Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zq13648
/
demand-forecasting
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
8cf4695
demand-forecasting
/
gr_app
/
helpers.py
zhang qiao
Upload folder using huggingface_hub
8cf4695
about 1 year ago
raw
Copy download link
history
blame
Safe
141 Bytes
import
pandas
as
pd
def
reset_index
(
_df: pd.DataFrame
):
df = _df.reset_index()
df[
'datetime'
] =_df.index.astype(
str
)
return
df