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
data(iris) head(iris)
It's unnecessary to use data().
data()
At the end of the file, there is a trailing
```
Which does not match anything
results$data$isig is logical. This doesn't correctly test that its value is TRUE
results$data$isig
TRUE
significant_results <- subset(results$data, isig == TRUE)
It should be either
significant_results <- subset(results$data, isig)
or, more robustly,
significant_results <- subset(results$data, isTRUE(isig))
The text was updated successfully, but these errors were encountered:
isig
igor-siciliani
PHS-Meantrix
No branches or pull requests
Unnecessary code
It's unnecessary to use
data()
.At the end of the file, there is a trailing
Which does not match anything
Bugs
results$data$isig
is logical. This doesn't correctly test that its value isTRUE
It should be either
or, more robustly,
The text was updated successfully, but these errors were encountered: