When you've got a data.frame in R and want to write it to csv and then import it into a Python Pandas instance, lazy code like this will fail to parse your string and date fields:
<some_file.R>
write.csv(my_data_frame, "my_data.csv" row.names=FALSE)
<another_file.py>
import pandas as pd
my_data = pd.read_csv("my_data.csv")
The soludtion is of course to pass pd.read_csv() a dtype
and parse_dates
parameters. This little function generates these parameters for you. For example:
> DF = data.frame(widgets=5L,size="large",today=Sys.Date())
> dtype(DF)
dtype={
"widgets":np.int64,
"size":str,
"today":str,
},
parse_dates=[
"today",
],