重命名列名后,我尝试将excel列类型之一从对象转换为日期时间,但它始终返回
ValueError :(“未知字符串格式:”,“登录时间”)
代码如下:
df_cols = ['Agent Name','Agent ID','Extension','LBLT','Login_Time','LOALT','LogOut_Time','Logout Reason','Logged-In Duration']
df = pd.read_excel('excel.xlsx',names=df_cols,header=0)
df['Login_Time'] = pd.to_datetime(df.Login_Time)
希望有人可以指出问题出在哪里。
答案 0 :(得分:0)
在最后一行尝试使用此方法
def gmmpara_init():
theta_init=np.ones(n_centroid)/n_centroid
u_init=np.zeros((latent_dim,n_centroid))
lambda_init=np.ones((latent_dim,n_centroid))
theta_p=theano.shared(np.asarray(theta_init,dtype=theano.config.floatX),name="pi")
u_p=theano.shared(np.asarray(u_init,dtype=theano.config.floatX),name="u")
lambda_p=theano.shared(np.asarray(lambda_init,dtype=theano.config.floatX),name="lambda")
return theta_p,u_p,lambda_p