Spaces:
Sleeping
Sleeping
capitalize strings
Browse files
app.py
CHANGED
|
@@ -26,10 +26,10 @@ df['Period Pay Rate'] = df['Period Pay Rate'].astype(int)
|
|
| 26 |
df['YTD Gross'] = df['YTD Gross'].astype(int)
|
| 27 |
df = df.dropna()
|
| 28 |
df = df[df['YTD Gross']!= 0]
|
| 29 |
-
df['Agency'] = df['Agency'].str.lower()
|
| 30 |
-
df['Agency Division'] = df['Agency Division'].str.lower()
|
| 31 |
-
df['Employee Name'] = df['Employee Name'].str.lower()
|
| 32 |
-
df['Position Title'] = df['Position Title'].str.lower()
|
| 33 |
|
| 34 |
df_c = df[df['Agency'] == 'corrections']
|
| 35 |
df_t = df[df['Agency'] == 'transportation']
|
|
|
|
| 26 |
df['YTD Gross'] = df['YTD Gross'].astype(int)
|
| 27 |
df = df.dropna()
|
| 28 |
df = df[df['YTD Gross']!= 0]
|
| 29 |
+
# df['Agency'] = df['Agency'].str.lower()
|
| 30 |
+
# df['Agency Division'] = df['Agency Division'].str.lower()
|
| 31 |
+
# df['Employee Name'] = df['Employee Name'].str.lower()
|
| 32 |
+
# df['Position Title'] = df['Position Title'].str.lower()
|
| 33 |
|
| 34 |
df_c = df[df['Agency'] == 'corrections']
|
| 35 |
df_t = df[df['Agency'] == 'transportation']
|