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.
|
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) |