You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
230 B
Python
9 lines
230 B
Python
1 year ago
|
from prophet import Prophet
|
||
|
import pandas as pd
|
||
|
import os
|
||
|
import datetime
|
||
|
|
||
|
file_dir = './浙江各地市行业电量数据'
|
||
|
city = os.listdir(file_dir)[0]
|
||
|
df_city = pd.read_excel(os.path.join(file_dir,city))
|
||
|
print(df_city.columns)
|