Difference between revisions of "Talk:Collins Foundation Final Report"

From FreekiWiki
Jump to navigation Jump to search
m
Line 1: Line 1:
* include here the criteria used for pulling numbers out of database
+
'''this is the formula used for generating numbers relating to volunteers & their hours'''
  
fgdb=# SELECT jobtype, count(*) FROM memberhour GROUP BY 1 ORDER BY 1;
+
=="Build" volunteer count by year:==
  
<pre>
+
fgdb=# SELECT EXTRACT( YEAR FROM created), COUNT( DISTINCT memberid )
jobtype         | count
+
FROM memberhour WHERE jobtype IN ('AdvancedTesting', 'Build',
----------------+-------
+
'Enterprise', 'Evaluation', 'Laptops', 'Quality', 'Repair', 'Sorting',
Admin          |  1875
+
'Teaching') GROUP BY 1 ORDER BY 1;
Adoption        |  5191
 
AdvancedTesting |  2428
 
Build           | 10228
 
Comp4Kids      |  125
 
CREAM          |    19
 
DataEntry      |  959
 
Education      |  551
 
Enterprise     |    24
 
Evaluation     |  6997
 
FrontDesk      |  126
 
Laptops         |  231
 
Misc            |  5473
 
Orientation    |    33
 
Outreach        |    43
 
Printers        |    32
 
Programming    |  228
 
Quality         |  1397
 
Receiving      |  6788
 
Recycling      | 11093
 
Repair         |  1033
 
Sales          |  479
 
Sorting         |  1813
 
Support        |  277
 
SysAdmin        |  115
 
Teaching       |  1675
 
Testing        |  4435
 
(28 rows)
 
</pre>
 
  
'''I will use the following in reference to adoption:
 
  (with note that a certain overlap exists with build for MISC)'''
 
*Adoption       
 
*DataEntry   
 
*FrontDesk 
 
*Misc         
 
*Printers   
 
*Receiving   
 
*Recycling   
 
*Testing
 
  
'''I will use the following in reference to build:
+
=="Adoption" volunteer count by year:==
  (with note that a certain overlap exists with build for MISC)'''
+
 
*AdvancedTesting
+
fgdb=# SELECT EXTRACT( YEAR FROM created), COUNT( DISTINCT memberid )
*Build         
+
FROM memberhour WHERE jobtype IN ('DataEntry', 'FrontDesk', 'Misc',
*Enterprise      
+
'Printers', 'Receiving', 'Recycling', 'Testing', 'Adoption') GROUP BY 1
*Evaluation 
+
ORDER BY 1;
*Laptops           
+
 
*Quality 
+
      
*Repair     
 
*Sorting     
 
*Teaching     
 
  
  

Revision as of 18:05, 25 January 2007

this is the formula used for generating numbers relating to volunteers & their hours

"Build" volunteer count by year:

fgdb=# SELECT EXTRACT( YEAR FROM created), COUNT( DISTINCT memberid ) FROM memberhour WHERE jobtype IN ('AdvancedTesting', 'Build', 'Enterprise', 'Evaluation', 'Laptops', 'Quality', 'Repair', 'Sorting', 'Teaching') GROUP BY 1 ORDER BY 1;


"Adoption" volunteer count by year:

fgdb=# SELECT EXTRACT( YEAR FROM created), COUNT( DISTINCT memberid ) FROM memberhour WHERE jobtype IN ('DataEntry', 'FrontDesk', 'Misc', 'Printers', 'Receiving', 'Recycling', 'Testing', 'Adoption') GROUP BY 1 ORDER BY 1;



should I include any recycling data? Is it really pertinent at all?

Note: Teaching might be people teaching adoption classes. RfS 18:23, 24 January 2007 (PST)