我正在运行一个小的 Python RevoscalePy 脚本来将文件导入 XDF 文件。
# [RESULTS_LOCATION] = ['C:\\\\Temp\\\\Data\\\\Results']
RxOptions.set_option("OutDataPath", [RESULTS_LOCATION])
...
infile = os.path.join(st.SAMPLE_DATA_DIR,'claims.txt')
rx_import(input_data = infile, output_file = 'claims.xdf',
overwrite = True)
该文件claims.xdf
不是保存在 中C:\Temp\Data\Results
,而是保存在脚本的目录中.py
(根据文档的默认值)。为什么?
更新
通过以下方式,它可以工作:
outfile = os.path.join(st.RESULTS_LOCATION,'claims.xdf')
rx_import(input_data = infile, output_file = outfile,
overwrite = True)