why the variable value 'F', when web scraped changes to 'FALSE'

Here is the issue i observed when i web scraped a table as shown in the image, it changes the value to 'FALSE', is there a way to avoid it while web scraping. I am using the rvest package

call_link <- "https://www.cdisc.org/standards/therapeutic-areas/vaccines/vaccines-therapeutic-area-user-guide-v11/html"
call_page <- read_html(call_link)

call_table <- call_page %>% html_nodes("table.confluenceTable.dataset") %>% 
  html_table() %>% .[[5]] 

image

I think i got the solution, i should update the code as below

html_table(convert=FALSE)
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.