Re: [R] Extract lines from pdf files

2019-11-20 Thread Bert Gunter
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

Re: [R] Extract lines from pdf files

2019-11-20 Thread Thomas Subia via R-help
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

Re: [R] Extract lines from pdf files

2019-11-20 Thread Bert Gunter
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

Re: [R] Extract lines from pdf files

2019-11-20 Thread Bert Gunter
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

Re: [R] Extract lines from pdf files

2019-11-20 Thread Jeff Reichman
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

[R] pairs.panels ()

2019-11-20 Thread Medic
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

Re: [R] Extract lines from pdf files

2019-11-20 Thread Eric Berger
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

Re: [R] Obtaining the time to execute a R command

2019-11-20 Thread Rui Barradas
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

Re: [R] Obtaining the time to execute a R command

2019-11-20 Thread Eric Berger
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] Obtaining the time to execute a R command

2019-11-20 Thread Jeff Reichman
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,