我有一些只有时间的时间序列数据。因此,我添加了日期,并想使用 <table class="table table-dark table-hover" #dataTable>
<thead>
<tr>
<th>Firstname</th>
<th>Age (Years)</th>
<th>Gender</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let user of userData">
<td>
{{ user.name}}
</td>
<td>
{{ user.age}}
</td>
<td>
{{ user.gender}}
</td>
<td>
<button class="btn btn-primary" (click)="edit({{ user.id }})">Edit</button>
<button class="btn btn-danger" (click)="delete({{ user.id }})">Delete</button>
</td>
</tr>
</tbody>
</table>
将其转换为datetime对象,但是当我应用该函数时,它将返回一个pd.to_datetime()
。
我有5天的数据价值,并且能够使用该方法将前3天的数据成功转换为日期时间对象。我尝试将错误参数输入为“忽略”,但它不返回日期时间对象。不确定如何解决此问题。请参阅下面给出的错误消息。
"value error"