File tree Expand file tree Collapse file tree 3 files changed +47
-4
lines changed Expand file tree Collapse file tree 3 files changed +47
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,17 @@ Ivan Cao-Berg (icaoberg) - Pittsburgh Supercomputing Center
4
4
## Undergraduate Students
5
5
Eduardo J. Figueroa (EduardoJFigueroa) - University of Puerto Rico
6
6
7
- # SAMS Data Science Group
7
+ ## CS Scholars Data Science Group
8
+ Joshua Franco (francojoshua) - Western High School
9
+ Nicolas Watkins (nicolasw-cmu) - Edmond Santa Fe Highschool
10
+ Carmen Ung (cmucung) - Rosemead High School
11
+ Marcuslyne Sieh (marcuslynes) - The Metropolitan Regional Career and Technical Center
12
+ Manav Mahida (ManavMahida) - North Penn High School
13
+ Temidayo Ogundare (Togundar) - Science Park High School
14
+ Neptune Barton (jellyfishking-github)- Eldorado High School
15
+
16
+
17
+ ## SAMS Data Science Group
8
18
Tiffany Wang (Tffny3) - Cupertino High School
9
19
Eileen Lin (eileen-png) - Eleanor Roosevelt High School, eSTEM Academy
10
20
Louis Lin (Bobvius) - Jack Britt High
Original file line number Diff line number Diff line change 1
- from .get import *
1
+ from .get import *
Original file line number Diff line number Diff line change @@ -54,11 +54,9 @@ def __get_contributor(df):
54
54
def __get_affilation (df ):
55
55
return df ["affiliation" ].value_counts ().to_dict ()
56
56
57
-
58
57
def __get_awards (df ):
59
58
return df ["award_number" ].unique ()
60
59
61
-
62
60
def __get_award_number (df ):
63
61
return df ["award_number" ].value_counts ().to_dict ()
64
62
@@ -90,6 +88,41 @@ def __get_technique(df):
90
88
def __get_locations (df ):
91
89
return df ["locations" ].value_counts ().to_dict ()
92
90
91
+ def __get_contributors (df ):
92
+ """
93
+ This returns an array of contributor names from the contributorname column.
94
+ """
95
+ return df ["contributorname" ].unique ()
96
+
97
+
98
+ def __get_project_names (df ):
99
+ '''
100
+ Gets the unique list of project names.
101
+
102
+ Input: dataframe
103
+ Output: list
104
+ '''
105
+ return df ['project' ].unique ()
106
+
107
+ def __get_list_of_projects (df ):
108
+ '''
109
+ Get the list of names for unique projects
110
+
111
+ Input parameter: dataframe
112
+ Output: list of projects
113
+ '''
114
+
115
+ return df ['project' ].unique ().to_dict ()
116
+
117
+ def __get_number_of_projects (df ):
118
+ '''
119
+ Get the number of unique projects
120
+
121
+ Input parameter: dataframe
122
+ Output: number of projects
123
+ '''
124
+
125
+ return len (df ['project' ].unique ())
93
126
94
127
def report ():
95
128
# Get today's date
You can’t perform that action at this time.
0 commit comments