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
remove.dups
strech()
When add remove.dups = TRUE, stretch() costs too much time:
remove.dups = TRUE
stretch()
x <- matrix(rnorm(100 * 206), nrow = 100) |> as.data.frame() cors <- corrr::correlate(x, quiet = TRUE) system.time(corrr::stretch(cors)) #> user system elapsed #> 0.02 0.00 0.08
system.time(corrr::stretch(cors, remove.dups = TRUE)) #> user system elapsed #> 1.79 0.19 6.72
Created on 2024-09-13 with reprex v2.1.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproducible example
When add
remove.dups = TRUE
,stretch()
costs too much time:Created on 2024-09-13 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: