Spaces:
Build error
Build error
BorowyP commited on
Commit ·
8fd1d8e
1
Parent(s): 98b3321
panel app
Browse files- Luftfeuchte.py +1 -1
Luftfeuchte.py
CHANGED
|
@@ -23,7 +23,7 @@ air_hum = pd.read_csv(r'df_air_hum.csv', sep=',',
|
|
| 23 |
decimal=',',
|
| 24 |
na_values=('#-INF', '#NAN'))
|
| 25 |
|
| 26 |
-
air_hum.index = pd.to_datetime(air_hum['Date'], format='%Y
|
| 27 |
#air_hum.index.names = ['Date']
|
| 28 |
air_hum = air_hum.drop(['Date'], axis=1)
|
| 29 |
air_hum['hum'] = air_hum['hum'].astype(np.float64, copy=True, errors='ignore')
|
|
|
|
| 23 |
decimal=',',
|
| 24 |
na_values=('#-INF', '#NAN'))
|
| 25 |
|
| 26 |
+
air_hum.index = pd.to_datetime(air_hum['Date'], format='%Y-%m-%d %H:%M:%S')
|
| 27 |
#air_hum.index.names = ['Date']
|
| 28 |
air_hum = air_hum.drop(['Date'], axis=1)
|
| 29 |
air_hum['hum'] = air_hum['hum'].astype(np.float64, copy=True, errors='ignore')
|