0

I am trying to import a pdf file into R so I can work with the data.

text_ira <- pdf_text('./data/IRA-June2012-2020.pdf') %>% 
    str_split('\n') %>% 
    unlist()

ira <- data.frame(text = text_ira) %>% 
    filter(
        str_starts(text, '0') |
        str_starts(text, '1'))

when I type class(ira) it shows a data.frame.

But when I hit the command below (I only have 110 rows in the ira data frame):

ira <- ira[-c(1000),]

when I then type class(ira) it shows a character. Can someone please explain why that is?

I need it to show as a character in order to proceed. Thanks.

IceCreamToucan
  • 28,083
  • 2
  • 22
  • 38
max
  • 31
  • 7

0 Answers0