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
I propose using a consistent, human-readable format when creating matrices in the @example section of Rage functions, e.g.
@example
Format 1
matU <- rbind(c( 0, 0, 0, 0), c(0.1, 0.1, 0.1, 0), c( 0, 0.3, 0.3, 0.1), c( 0, 0, 0.2, 0.1))
Format 2
matU <- rbind(c(0.0, 0.0, 0.0, 0.0), c(0.1, 0.1, 0.1, 0.0), c(0.0, 0.3, 0.3, 0.1), c(0.0, 0.0, 0.2, 0.1))
I think Format 1 is slightly easier to read in the R documentation browser. Thoughts?
The text was updated successfully, but these errors were encountered:
Good point. I find Formats super clear, but I marginally prefer Format 2.
Sorry, something went wrong.
No branches or pull requests
I propose using a consistent, human-readable format when creating matrices in the
@example
section of Rage functions, e.g.Format 1
Format 2
I think Format 1 is slightly easier to read in the R documentation browser. Thoughts?
The text was updated successfully, but these errors were encountered: