-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
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
No method matching isfinite for nullable Int64 #1083
Comments
Related to #909 ? |
Note that Gadfly has not supported the use of DataFrames with missing values (NA) for a while (#538, #567). Gadfly will produce an error on Julia v0.5 and v0.6 with the following example : y = DataArray(randn(10))
y[5] = NA
D = DataFrame(x=[1:10;], y=y)
p = plot(D, x=:x, y=:y, Geom.line) Does your DataFrame contain missing values, and can you provide a minimum example which produces the same error as you encountered. |
The DataFrame doesn't contain any missing values. I think the issue is stemming from using CSV. Manually creating small DataFrames doesn't produce the problem.
|
This works for me: D = CSV.read("poc.csv", nullable=false)
p = plot(D, x=:bar, y=:foo, Geom.line) |
Confirmed same issue. There are no missing values in my data frame. Adding |
Will the new |
Since Julia 1.0 has a stable implementation of
But if you add |
Closing this is in favor of #1267 |
The text was updated successfully, but these errors were encountered: