You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For simplicity of my code, lets say that i need to convert a pandas python dataframe into a julia dataframe: (using Julia)
using Arrow
using DataFrames
using PyCall
pd=pyimport("pandas")
file_utils=pyimport("core.utils.file_utils")
py_df=pd.read_parquet("/Users/data_test")
arrow_by=file_utils.to_arrow(py_df)
julia_df=DataFrame(Arrow.Table(arrow_by))
julia_df = DataFrame(py_df)
However, everytime i run it i get the following message (already followed the instructions):
Any ideas of how to fix it or an alternative to get the result needed? Thanks
The text was updated successfully, but these errors were encountered:
For simplicity of my code, lets say that i need to convert a pandas python dataframe into a julia dataframe: (using Julia)
However, everytime i run it i get the following message (already followed the instructions):
Any ideas of how to fix it or an alternative to get the result needed? Thanks
The text was updated successfully, but these errors were encountered: