I think you are more likely to get a helpful answer if you give a minimal
example of what your lines look like. I certainly don't have a clue, though
maybe someone else will.
Cheers,
Bert
On Wed, Nov 20, 2019 at 12:21 PM Thomas Subia via R-help <
r-help@r-project.org> wrote:
> Thanks all for th
Thanks all for the help. I appreciate the feedback
I've developed another method to extract my desired data from multiple pdfs in
a directory.
# Combine all pdfs to a combined pdf
files <- list.files(pattern = "pdf$")
pdf_combine(files, output = "joined.pdf")
# creates a text file from joined.pd
rather, system.time() of course.
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Wed, Nov 20, 2019 at 11:19 AM Bert Gunter wrote:
> Don't do this (the timing
Don't do this (the timing code you showed, not Eric's suggestions).
Do this:
sys.time( {
code of interest
})
(or use the microbenchmark package functionality)
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berke
Eric
I will have to give that a try. Thanks.
For a "it works" method I used
start_time <- Sys.time()
insert code of interest
end_time <- Sys.time()
end_time - start_time
-Original Message-
From: R-help On Behalf Of Eric Berger
Sent: Wednesday, November 20, 2019 9:58 AM
Hi, Sarah,
Thank you not just for the answer, but for the teaching (!) answer!
Yes, cex.labels is what I need!
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting gu
Hi Thomas,
As Jeff wrote, your HTML email is difficult to read. This is a "plain
text" forum.
As for "pointers", here is one suggestion.
Since you write that you can do the necessary actions with a specific
file, try to write a function that carries out those actions for that
same file.
Except when
Hello,
There is
system.time {base}
CPU Time Used
Description
Return CPU (and other) times that expr used.
There are also packages microbenchmark or bench.
Hope this helps,
Rui Barradas
Às 15:44 de 20/11/19, Jeff Reichman escreveu:
R- Help
Is there a command or way to obtain the ti
Hi Jeff,
You might want to check out the microbenchmark() function in the
microbenchmark package.
install.packages("microbenchmark")
library(microbenchmark)
?microbenchmark
HTH,
Eric
On Wed, Nov 20, 2019 at 5:45 PM Jeff Reichman
wrote:
> R- Help
>
>
>
> Is there a command or way to obtain the
R- Help
Is there a command or way to obtain the time it took R to execute a command?
Sincerely
Jeff Reichman
(314) 457-1966
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more,
10 matches
Mail list logo