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 have a rather large .Rprof file that isn’t read properly. Example line:
memory profiling: GC profiling: line profiling: sample.interval=10000 ... :6811704:2681846801:633005352:385:"%in%" "which" "FUN" "lapply" "sapply" "smth.gaussian" "FUN" "apply" "gene_relevance_impl" "gene_relevance" "gene_relevance" "force" "doTryCatch" "tryCatchOne" "tryCatchList" "doTryCatch" "tryCatchOne" "tryCatchList" "tryCatch" "profvis::profvis" "eval" "eval" "withVisible" "withCallingHandlers" "doTryCatch" "tryCatchOne" "tryCatchList" "tryCatch" "try" "handle" "timing_fn" "evaluate_call" "evaluate" "doTryCatch" "tryCatchOne" "tryCatchList" "doTryCatch" "tryCatchOne" "tryCatchList" "tryCatch" "executor$execute" "handle_shell" "kernel$run" "IRkernel::main" ...
I assume you try to convert the numbers between the colons to integers, but they are too big.
The text was updated successfully, but these errors were encountered:
Presumably we can just replace the calls to as.integer() to as.double()
as.integer()
as.double()
Sorry, something went wrong.
Use doubles instead of integers
2e2bd56
Fixes #114
Use doubles instead of integers (#166)
f49540d
Successfully merging a pull request may close this issue.
I have a rather large .Rprof file that isn’t read properly. Example line:
I assume you try to convert the numbers between the colons to integers, but they are too big.
The text was updated successfully, but these errors were encountered: