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
Reported by Baptiste Schmid on 7 Apr 2017:
plot(ts, quantity="dens") #>>> Error in if (is.na(x) || is.na(y)) next : missing value where TRUE/FALSE needed
The text was updated successfully, but these errors were encountered:
This error occurs here in plotting function of wind barbs
Sorry, something went wrong.
when both x and y are empty, the if statement evaluates to logical(0) || logical(0) which is NA, producing the error message.
x
y
logical(0) || logical(0)
fix issue #31
7fc2df6
Closed by commit 7fc2df6
60bf441
No branches or pull requests
Reported by Baptiste Schmid on 7 Apr 2017:
The text was updated successfully, but these errors were encountered: