0

在谷歌搜索 1+ 小时后我放弃了。在这里,我的目标是从 R 和 Python 不同的字典(默认的“C:\Users\murali”除外)中存储我的羽毛文件。我正在为 R 和 Python 使用 Jupyter Notebooks

非常感谢你的帮助!!

R代码

library(feather)
path <- "my_data.feather5"
write_feather(mtcars, path)
df <- read_feather(path)

Python 编码

import feather
import pandas as pd
import numpy as np
arr = np.random.randn(10000) # 10% nulls
arr[::10] = np.nan
df = pd.DataFrame({'column_{0}'.format(i): arr for i in range(10)})
feather.write_dataframe(df, 'test.feather')
4

1 回答 1

0

R(将工作目录设置为新的默认值):

setwd("C:\Users\murali")

Python

os.chdir("C:\Users\murali")
于 2018-03-26T18:56:38.410 回答