Login

Welcome, Guest. Please login or register.

November 02, 2025, 12:10:01 pm

Author Topic: Study score analysis?  (Read 34624 times)  Share 

0 Members and 1 Guest are viewing this topic.

Synesthetic

  • 2008 VN Dux
  • Victorian
  • Trendsetter
  • **
  • Posts: 177
Re: Study score analysis?
« Reply #60 on: December 30, 2008, 05:53:09 pm »
7. Paikopoulos, Miltiadis (4 total)
   English: 50
   LOTE Classical Greek: 48
   LOTE Latin: 47
   Mathematics - Specialist Mathematics: 45

...Holy crap.  Are my eyes deceiving me, or is that a 99.95 with four subjects?

2007

1955. Paikopoulos, Miltiadis (Xavier College Kew): 2 total
   Accounting: 50
   Mathematics - Mathematical Methods (CAS): 49
\



WOW!! He must have got the highest aggregate.

That's right, his aggregate was just under 220.
2007- History Revs (44)[46], Chinese SL (32)[44]
2008- English (50)[50], Literature (50)[50], Methods (49)[49.7], Specialist (44)[50.5], Chemistry (41)[45]
ENTER: 99.95

hard

  • Guest
Re: Study score analysis?
« Reply #61 on: December 30, 2008, 05:55:39 pm »
7. Paikopoulos, Miltiadis (4 total)
   English: 50
   LOTE Classical Greek: 48
   LOTE Latin: 47
   Mathematics - Specialist Mathematics: 45

...Holy crap.  Are my eyes deceiving me, or is that a 99.95 with four subjects?

2007

1955. Paikopoulos, Miltiadis (Xavier College Kew): 2 total
   Accounting: 50
   Mathematics - Mathematical Methods (CAS): 49
\



WOW!! He must have got the highest aggregate.
fuck me side ways.

Synesthetic

  • 2008 VN Dux
  • Victorian
  • Trendsetter
  • **
  • Posts: 177
Re: Study score analysis?
« Reply #62 on: December 30, 2008, 08:14:09 pm »
7. Paikopoulos, Miltiadis (4 total)
   English: 50
   LOTE Classical Greek: 48
   LOTE Latin: 47
   Mathematics - Specialist Mathematics: 45

...Holy crap.  Are my eyes deceiving me, or is that a 99.95 with four subjects?

2007

1955. Paikopoulos, Miltiadis (Xavier College Kew): 2 total
   Accounting: 50
   Mathematics - Mathematical Methods (CAS): 49
\



WOW!! He must have got the highest aggregate.

Actually...I'm not quite so sure now.


2008:
5. Hughes, Stephen (Xavier College Kew): 5 total
   Biology: 50
   Chemistry: 49
   English: 50
   LOTE Classical Greek: 49
   Mathematics - Specialist Mathematics: 44

2007:
1069. Hughes, Stephen (Xavier College Kew): 3 total
   LOTE Japanese Second Language: 45
   LOTE Latin: 47
   Mathematics - Mathematical Methods (CAS): 46


Both their aggregates are ~220.
For Stephen Hughes, he didn't need the 49 in Chem and 46 in Methods in his top six ;D
« Last Edit: December 30, 2008, 08:23:18 pm by Synesthetic »
2007- History Revs (44)[46], Chinese SL (32)[44]
2008- English (50)[50], Literature (50)[50], Methods (49)[49.7], Specialist (44)[50.5], Chemistry (41)[45]
ENTER: 99.95

GMK11

  • Victorian
  • Forum Regular
  • **
  • Posts: 81
Re: Study score analysis?
« Reply #63 on: December 30, 2008, 08:26:03 pm »
Paikopoulos, Miltiadis

^^^ he got the highest in Vic.
2008 Enter: 94.9

riadnicolas

  • Victorian
  • Forum Obsessive
  • ***
  • Posts: 390
Re: Study score analysis?
« Reply #64 on: December 31, 2008, 01:52:47 pm »
i met miltiadis he also did an extension study, UMEP maths
VCE 2008 Enter: 97.15

English, 32
Chemistry, 42
Methods, 46
Specialist, 41
Business Management, 38
Umep Maths, <64 P>

Bachelor of Biomedicine-UOM 09

excal

  • VN Security
  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 3490
  • Über-Geek
Re: Study score analysis?
« Reply #65 on: January 04, 2009, 03:11:56 am »
@Excalibur: I cleaned up the source code a little bit and uploaded it: http://www.quppa.net/studyscores.html

Very little documentation, sorry (there's not much code, though). I decided to change it to use hash tables instead of a simple array, which ended up cutting down the processing time from about 1 minute on my machine to about 10 seconds. Great success~ (I still think database queries would be easier...)

Quick skim over the code and it looks like it's better documented than anything I'd do for myself...

(and least you haven't put the entire program on one line or just simply removed all whitespace altogether...)

I'll just use some tools I have to parse the code and give me a class diagram that'll help me make sense of the classes you've used - but I sort of get the gist anyway.
excal (VCE 05/06) BBIS(IBL) GradCertSc(Statistics) MBBS(Hons) GCertClinUS -- current Master of Medicine candidate
Former Global Moderator

excal

  • VN Security
  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 3490
  • Über-Geek
Re: Study score analysis?
« Reply #66 on: January 04, 2009, 03:25:13 am »
Code: [Select]
public static void readSubjects() throws Exception {

String dataDir = rootdir + year + "\\Subjects";
File subjectDir = new File(dataDir);

// list of subjects
File[] subjectList = subjectDir.listFiles();

subjects = new Subject[subjectList.length];
subjectSchools = new SchoolListHT[subjectList.length];

System.out.println("Reading data files (" + dataDir + ")...");

long startreadtime = System.currentTimeMillis();

for(int i=0;i<subjectList.length;i++) { ... } 

My understanding is that this snippet of code (including the for loop) reads from a folder of source data files and names the Subject based on the file's name which is presumably in the format "Subject Name 3/4", hence:

Code: [Select]

studyName = studyName.substring(0,studyName.length()-4);

I'm curious to know by what method you used to grab the data files off the Herald Sun website? Was it by hand?
« Last Edit: January 04, 2009, 03:26:56 am by Excalibur »
excal (VCE 05/06) BBIS(IBL) GradCertSc(Statistics) MBBS(Hons) GCertClinUS -- current Master of Medicine candidate
Former Global Moderator

Quppa

  • Victorian
  • Forum Regular
  • **
  • Posts: 58
Re: Study score analysis?
« Reply #67 on: January 13, 2009, 12:23:17 am »
My understanding is that this snippet of code (including the for loop) reads from a folder of source data files and names the Subject based on the file's name which is presumably in the format "Subject Name 3/4".

That's right.

I'm curious to know by what method you used to grab the data files off the Herald Sun website? Was it by hand?

I did do it by hand, I'm afraid. It's easily the most tedious part about the whole process, and when I can be bothered I intend to make an automated scraper to do it for me for future years.

Quppa

  • Victorian
  • Forum Regular
  • **
  • Posts: 58
Re: Study score analysis?
« Reply #68 on: January 27, 2009, 07:03:29 pm »
I'm not sure if this will interest many people here, but someone kindly sent me data from 1998 and 2000-2005. The archive now contains 10 years' worth of info, which I think is pretty cool.

http://www.quppa.net/studyscores.html

Now I can forget about this for another year...

RD

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1135
Re: Study score analysis?
« Reply #69 on: January 27, 2009, 10:03:46 pm »
Gunna be a major stalkfest with the old data.

lalala

  • Guest
Re: Study score analysis?
« Reply #70 on: January 27, 2009, 10:12:19 pm »
It doesn't work for me  :(

Quppa

  • Victorian
  • Forum Regular
  • **
  • Posts: 58
Re: Study score analysis?
« Reply #71 on: January 28, 2009, 12:16:14 am »
It doesn't work for me  :(

Do you have 7-zip or WinRAR installed?