[R] extracting pdf tables...

akshay kulkarni @k@h@y_e4 @end|ng |rom hotm@||@com
Sun Apr 9 19:22:32 CEST 2023


Dear members,
                             I am extracting a pdf table by the following code:

> library(tabulizer)
> IDT <- extract_tables("https://www.canmoney.in/pdf/INTRADAYLEVERAGE-20220531-latest.pdf",output = "data.frame")

It returns 4 different data frames which I want to combine them and make one data frame. But when I run this:

> rbind(IDT[[1]],IDT[[2]],IDT[[3]],IDT[[4]])
 Error in match.names(clabs, names(xi)) :
names do not match previous names

Also:

> class(IDT[[1]])
[1] "data.frame"

> cbind(IDT[[1]],IDT[[2]],IDT[[3]],IDT[[4]],make.row.names = FALSE)
 Error in data.frame(..., check.names = FALSE) :
arguments imply differing number of rows: 55, 56, 30, 1

Can anyone please help me to combine all these 4 different data frames?

Thanking you,
Yours sincerely,
AKSHAY M KULKARNI

	[[alternative HTML version deleted]]



More information about the R-help mailing list