-
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
Plot DataFrame with NA #538
Comments
Having a DataFrame with missing rows seems conceptually incorrect from the start. I'm closing the issue. |
For plotting I solve that with defining locally
, but you wouldn't want such a definition globally. |
Why is this issue closed? The @vchuravy solution works, but I think Gadfly should handle this. |
@gestay I closed the issue because having a DataFrame with missing rows is kind of buggy. Whatever application you have, a missing row doesn`t make much sense, agree? If you have a good counter example, please share. 😊 |
For Gadfly itself, one of the problems I encountered is how to plot data series with gaps, and make these gaps visible. If I only have one, I would assign the NA value to the other observation. In that sense it is natural to have NA values in rows and columns of data. The question is if there is a natural way for gadfly to plot NA values. Another situation are functions with discontinuousness. |
Suppose I have a DataFrame with missing rows. How do I drop all NAs in the spot? I see a function
dropna()
but I'm wondering if Gadfly has a cleaner solution.I'm getting an error:
The text was updated successfully, but these errors were encountered: