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
convert
I’m stuck with new Julia 0.7/1.0 DataFrames functionality. I have dataframe df where column 1 is an array of DataValues.DataValue{Any}.
df
DataValues.DataValue{Any}
How can I convert it to DateTime, and allow for missing?
This doesn’t work:
datetimes = convert(Vector{Union{DateTime,Missing}}, df[1])
MethodError: Cannot `convert` an object of type DataValues.DataValue{Any} to an object of type DateTime
The text was updated successfully, but these errors were encountered:
DataValue entries should never appear in a data frame. That's probably a bug in the Queryverse package you used to import the data.
DataValue
Sorry, something went wrong.
No branches or pull requests
I’m stuck with new Julia 0.7/1.0 DataFrames functionality. I have dataframe
df
where column 1 is an array ofDataValues.DataValue{Any}
.How can I convert it to DateTime, and allow for missing?
This doesn’t work:
The text was updated successfully, but these errors were encountered: