Python script in Power BI returns date as Microsoft.OleDb.Date(Power BI 中的 Python 脚本将日期返回为 Microsoft.OleDb.Date)
问题描述
导入包含两列 [Date, Value] 的 csv 文件并使用 Home > 对其进行转换后编辑查询 >变换>运行 Python 脚本,Date 列显示 Microsoft.OleDb.Date 而不是日期.在运行脚本之前,同一列中的相同值显示为 12.10.2018(来自 csv 的输入格式为 2018-10-12).这会导致 Query Settings 中的任何后续步骤中断.你如何解决这个问题?
样本数据:
日期、数值2108-10-12,12108-10-13,22108-10-14,32108-10-15,42108-10-16,5代码示例:
# 'dataset' 保存此脚本的输入数据数据集['Value2'] = 数据集['Value']*10数据集错误:
这与 R 脚本描述的问题相同
在您执行任何其他操作之前,只需单击日期旁边的符号并选择 Text.
现在你可以点击Run Python Script,插入你的代码然后点击OK.这会将您带到最后一个中间步骤,您必须在此处单击 Table:
就是这样:
请注意,Date 的数据类型已更改为日期格式.如果没有,您可以使用上面说明的右键单击下拉菜单轻松地再次更改它.
After importing a csv file with two columns [Date, Value] and transforming it using Home > Edit Queries > Transform > Run Python Script, the Date column shows Microsoft.OleDb.Date instead of dates. Before running the script, the same values in the same column are displayed as 12.10.2018 (input format from csv is 2018-10-12). This causes any later step in Query Settings to break. How do you work around this?
Sample data:
Date,Value
2108-10-12,1
2108-10-13,2
2108-10-14,3
2108-10-15,4
2108-10-16,5
Code example:
# 'dataset' holds the input data for this script
dataset['Value2'] = dataset['Value']*10
dataset
Error:
This is the same issue as described for R scripts here, but for the sake of clarity, I'll add an answer for Python in Power BI as well.
Short answer:
Just change the Date data type from date to Text before you insert the Python Script.
The details:
If you import the csv file using the Home > Get Data functionality, and then go to Home > Edit Queries, this is what you'll see:
Before you do anything else, just click on the symbol next to date and select Text.
Now you can click Run Python Script, insert your code and clikc OK. This takes you to one last intermediate step where you'll have to click Table here:
This is it:
Notice that the datatype of Date is changed to a date format. If not you can easily change it again with the right-click drop-down menu as explained above.
这篇关于Power BI 中的 Python 脚本将日期返回为 Microsoft.OleDb.Date的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Power BI 中的 Python 脚本将日期返回为 Microsoft.Ole
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 如何将一个类的函数分成多个文件? 2022-01-01
- 沿轴计算直方图 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
