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
Sec 2.4 Lists Q2 answer:
Note that as.vector() and is.vector() use different definitions of “vector!”
> is.vector(as.vector(mtcars)) > #> [1] FALSE
The above output is correct for R version before 4.2.2, but the output is changed to TRUE by using R version 4.2.2
TRUE
> is.vector(as.vector(mtcars)) > #> [1] TRUE
The text was updated successfully, but these errors were encountered:
Thank you for posting this finding. Will incorporate this with the next round of updates.
Sorry, something went wrong.
No branches or pull requests
Sec 2.4 Lists Q2 answer:
The above output is correct for R version before 4.2.2, but the output is changed to
TRUE
by using R version 4.2.2The text was updated successfully, but these errors were encountered: