I tried to extract multiple html_table using rvest package in R using the scripts:
library(rvest)
library(dplyr)
library('xml2')
library(tidyverse)
jump <- seq(1, 2, by = 1)
urls <- paste('https://asbdavani.org/horse/foals/', jump, sep="")
out <- vector("character", length = length(urls))
for(i in seq_along(urls)){
derby <- read_html(urls[i], encoding="UTF-8")
out[i] <- derby %>%
html_table(fill = TRUE)
}
first_table <- out[[1]]
Here, I extracted one of those tables as first_table:

I want to know how can I have links of each character in columns 2, 6, and 7 like this :
