Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is that even possible!?!

I have a bunch of legacy reports that I need to import into a database. However, they're all in pdf format. Are there any R packages that can read pdf? Or should I leave that to a command line tool?

The reports were made in excel and then pdfed, so they have regular structure, but many blank "cells".

share|improve this question
2  
Taking a glance at CRAN, there doesn't appear to be any library that does that. You might be better off using another language that has such libraries (Perl and Python, for example, both have them), grabbing the data that you need, and then writing it to a file that can be read by R. – Jack Maney Feb 7 '12 at 23:51
@JackManey Thanks, that's what I thought. There is readPDF in the tm package (text mining), but it isn't exactly user friendly and I think it uses the command line utility pdftotext under the hood anyway. – Justin Feb 7 '12 at 23:56
3  
You have my sympathies. Maybe some day we'll live in a world where all data is available as data! – Ari B. Friedman Feb 8 '12 at 0:21
1  
@gsk3 (+1) I appreciate the condolences... I spend most of my days wishing that. And since people are paying attention and I didn't look hard enough... (stackoverflow.com/questions/3852354/…) confirms my suspicions. – Justin Feb 8 '12 at 0:29
There is also the grImport package, which can read PDF files, but it is designed to extract vector graphics -- the text will also be there, but perhaps not in a very useable form. – Vincent Zoonekynd Feb 8 '12 at 0:57

2 Answers

up vote 9 down vote accepted

Just a warning to others who may be hoping to extract data: PDF is a container, not a format. If the original document does not contain actual text, as opposed to bitmapped images of text or possibly even uglier things than I can imagine, nothing other than OCR can help you.

On top of that, in my sad experience there's no guarantee that apps which create PDF docs all behave the same, so the data in your table may or may not be read out in the desired order (as a result of the way the doc was built). Be cautious.

Probably better to make a couple grad students transcribe the data for you. They're cheap :-)

share|improve this answer
I wish! Some of us don't have grad students to do our bidding. And I'm too low on the totem pole to hire interns (read lackeys). But good advice! – Justin Feb 8 '12 at 2:44
5  
Mechanical Turk? :-) – Ari B. Friedman Feb 8 '12 at 4:29
@CarlWitthoft I'll accept your answer! Particularly the last line. – Justin Feb 9 '12 at 15:41

So... this gets me close even on a fairly complex table.

Download a sample pdf from bmi pdf

library(tm)

pdf <- readPDF(PdftotextOptions = "-layout")

dat <- pdf(elem = list(uri='bmi_tbl.pdf'), language='en', id='id1')

dat <- gsub(' +', ',', dat)
out <- read.csv(textConnection(dat), header=FALSE)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.