Hi Everyone,
I'm working on doing some nice graphs for Joe of the Kiva stats which will be auto generated from grabbing the stats off the Kiva site each night and saving to a database (pending permission from Kiva, still waiting for a response).
I need your help to create some test data that I can put in my database for the purposes of testing what I'm working on. If any of you know what the Total Loans value has been each day for maybe the last month or so, I could use this data (best in an Excel spreadsheet) in this format:
Date, Loans Amount, Loan Amount Change From Previous Day, Number of Lenders, Change In Lenders:
2007-12-01, 15000000, 1000, 158530, 150
2007-12-02, 15006000, 6000, 158730, 200
2007-12-03, 15008000, 2000, 158830, 100
Real values are best, or you could make up a set of values for me (as close to the current numbers as possible). I need at least one month worth. If you have the real stats for November- that would be even better! If you can't make an excel file... then a comma separated list like the above is the second best option... I think...
or if you REALLY want to get fancy, you could make it into SQL (database language) statements for me so I can put it directly into my database, like so:
INSERT INTO `kiva_stats_daily` VALUES (NULL, '2007-12-01', 15800410, 1354, 158530, 150);
INSERT INTO `kiva_stats_daily` VALUES (NULL, '2007-12-02', 15809410, 9000, 158730, 200);
INSERT INTO `kiva_stats_daily` VALUES (NULL, '2007-12-03', 15811410, 2000, 158830, 100);
THAT would be very helpful. Hopefully these graphs will be a nice addition to the KivaFriends site. See work in progress here:
EDIT - NEW LINKS!http://www.start.ofitall.com/kiva/stats/stats-graphs.php?graph=1 (Total Loans)
http://www.start.ofitall.com/kiva/stats/stats-graphs.php?graph=2 (Loans Daily)
http://www.start.ofitall.com/kiva/stats/stats-graphs.php?graph=3 (Total # Of Lenders)
http://www.start.ofitall.com/kiva/stats/stats-graphs.php?graph=4 (Daily New Lenders)
(Note: please do not add these links to your websites, this is not the final home of these charts... they will be on the kivafriends.org website soon).
Thank you thank you!!!