Hi Wolfgang,
sorry to get in the middle of the conversation, but I though it was opportune to drop a word on a specific subject you've come up with.
(Disclaimer: I would not like to make my response to pass as advertising, but if yes, any moderator may remove my post, or move it to an appropriate section)
Wolfgang wrote:But the eventual theses , etc, to be able to verify this all, we will need data and the right software . And here there are still no known to me any exchanges. The normal " software " perhaps serves to any average astrologer , but for research it needs some other software. And to execute all this data it also needs cooperation of research-based astrologer.
I've been working for some time in my project which is aimed also at solving that specific problem, of being also a research tool, essentially because that is my primary goal with astrology. That part of the software is quite ready (for my personal usage), and I'm already using it to generate astrological tabular data from a large dataset.
For instance, there has been a (quite) "collaborative" discussion about the efficiency of some methods in the Sports/Speculation section to devise the winners of games/races.
But instead of drawing all 864 charts, I use my API (Programming Interface) to generate the astrological tabular data for the games. The advantage of this approach is that I do not need to see the 864 charts, only the statistics using Data mining software.
As an example of what is possible with these kind of softwares, so far I've ruled out the idea that Hour ruler agreement has any influence on the outcome of football games, and I could find evidence that the Asc Ruler in the 6th accounts for a large number of Away Team winnings while on the 7th, it accounts for a large increase of Home Team winnings. With that information and software, I can see statistics for new ideas very fast.
For instance, for a dataset of games (with date/times) I do something like this:
Code: Select all
for game in games:
chart = game.getChart()
asc = chart.getHouse(HOUSE1)
ascRuler = asc.essentialDignity().ruler
# Get the house and sign of the AscRuler
ascRulerHouse = ascRuler.getHouse()
ascRulerSign = ascRuler.getSign()
# Get aspects to asc ruler
aspectList = chart.getAspectsTo(ascRuler)
for aspect in aspectList:
if (aspect.type == QUADRATURE): doSomething()
...
# Print all individual information to a table row
This is just a small programmatically example, but I can do more complex things with this.. So, there is the software, but I still have to devise the better way to make this available, and workable to people without Computer Programming skills.. I think in 5/6 months I'll start to have anything ready for betatesting, I'll post here at skyscript at that time if there is any interest in the subject..
Wolfgang wrote:
Therefore, I would like to see a new foundation of research groups, or asking for forms such that can make sense to use Examine for the respective research themes, the needed software and data.
This matches with my interest on Astrology, and I let my interest in working with people with similar interests (to study astrology methods through the usage of large datasets using statistical analysis). For instance, a dataset with accurate birth dates and death dates, and an hypothesis/method to test predictions would be a great research topic. If you happen to have something like that, drop me a word..
(By the way,
here is a merchandising video of the software I use to do analytics over the astrological data)
Regards,
Jo?o Ventura