![]() |
|
|
#23 | ||
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17×251 Posts |
Quote:
Quote:
I also noticed that a lot of the code you included, while useful if you're planning to use the data in more Perl code, was useless and unused for me. Here's an updated version of my modification: Code:
open(IN, $ARGV[0].'.txt');
open(OUT, '>' .$ARGV[0].'.csv');
print OUT "Rank,Name,GHz-Days,Attempts,Successes\n";
while (<IN>) {
if (/^\s*(\d*)\s*(.*)\s+(\d+\.\d*)\s*(\d*)\s*(\d*)\s*\|(.*)/) {
print OUT "$1,\"$2\",$3,$4,$5\n";
$i++;
if ($i % 500 == 0) {
print "on line $i\n";
}
}
}
|
||
|
|
|
|
|
#24 | |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
2×67×73 Posts |
Quote:
Also, you'd correctly commented that this doesn't work on the "Totals Overall" report. For anyone who's interested, here's code for that report: Code:
if (/^\s*(\d+)\s*(.*)\s+(\d+\.\d*)\s*\|(.*)\|(.*)$/) {
$Rank = $1;
$Name = $2;
$GHzDays = $3;
$Deltas = $4;
$Percentages = $5;
}
|
|
|
|
|
|
|
#25 | |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
2×67×73 Posts |
Quote:
Did you run your analysis from a full dataset of each work type (and overall) ("Customize"... "End Rank" = 10000 results in 6705 records with GHzDays > 0.000 for the overall report as of right now, for example), or only the reports' default top 1000? If the latter, this might explain what you observed. If the former, I have no idea.... |
|
|
|
|
|
|
#26 | |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
10000101010112 Posts |
Quote:
So ECM on Fermat is about 0.71% of the total GHz-Days, which is just a little less than ECM on Mersenne. Last fiddled with by Mini-Geek on 2010-09-30 at 20:03 |
|
|
|
|
|
|
#27 |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
2·67·73 Posts |
Mini-Geek" "It was with all results, which is the default before you click Customize.
I'm not entirely sure you are correct here. For empirical evidence, do all of the default queries provide more than 1000 records (other than, perhaps, ECM-F, which provides the full donation in less than 1000 records)? If they don't provide more than 1000 records, then your claim you're working from the full data sets is clearly false. Last fiddled with by chalsall on 2010-09-30 at 20:15 |
|
|
|
|
|
#28 | |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
426710 Posts |
Quote:
All: 7629 P-1: 4430 TF: 4048 LL: 3066 DC: 2394 ECM: 458 ECM-F: 139 As you can see, only the two ECMs have under 1001 people. With the now-marginal difference, I'm pretty darn sure there's nothing else being missed. Now that all the reports are showing as the 7:00 PM report, I can recalculate. I'll do that now and either edit or post, hopefully I'll now see exactly 0 unaccounted for.
Last fiddled with by Mini-Geek on 2010-09-30 at 20:12 |
|
|
|
|
|
|
#29 | |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17×251 Posts |
Quote:
Here are the new GHz-Days percentages (out of all GIMPS work): P-1: 3.68% LL: 74.04% DC: 11.08% TF: 9.74% ECM: 0.76% ECM-F: 0.71% And Attempts percentages (out of all GIMPS work): P-1: 0.25% LL: 0.14% DC: 0.09% TF: 98.29% ECM: 1.19% ECM-F: 0.04% And something new: The ratio of Successes to Attempts in that category. This has a different meaning for each category, but still fun to compare. ![]() P-1: 4.70% LL: 0.00% DC: 93.39% TF: 2.32% ECM: 0.59% ECM-F: 0.01% And just for the record: none of these categories 'just happened' to have 1000 results. They're all the full rankings. Also, this was all based off of the Sep 30, 7:00 PM hourly report. Last fiddled with by Mini-Geek on 2010-09-30 at 20:30 |
|
|
|
|
|
|
#30 | |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
100110001101102 Posts |
Quote:
The minor difference you've found working on the full publicly available dataset is probably explained by the fact that PrimeNet rounds all individual records to 0.001 GHzDays. |
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Top 500 rankings "going backwards"? | daxmick | Information & Answers | 2 | 2017-12-19 07:39 |
| Question About Rankings | LiquidNitrogen | Information & Answers | 3 | 2011-07-02 19:51 |
| "successes" in DC rankings? | ixfd64 | PrimeNet | 5 | 2011-01-31 19:44 |