We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to convert into a python dataframe a julia dataframe with mixed datatypes, such as
using DataFrames import Pandas DataFrame(:v=>["Test", 42]) |> Pandas.DataFrame
I get error message ERROR: ArgumentError: Can't create a Pandas.DataFrame from a source that has missing data.
ERROR: ArgumentError: Can't create a Pandas.DataFrame from a source that has missing data.
Apart from the fact that the error message is misleading, I think this should work as the following is OK:
pd = pyimport_conda("pandas", "pandas") pd.DataFrame(Dict(:v=>["Test", 42]))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to convert into a python dataframe a julia dataframe with mixed datatypes, such as
I get error message
ERROR: ArgumentError: Can't create a Pandas.DataFrame from a source that has missing data.
Apart from the fact that the error message is misleading, I think this should work as the following is OK:
The text was updated successfully, but these errors were encountered: