79168631

Date: 2024-11-08 02:49:01
Score: 1
Natty:
Report link

Extract the header from the list and add it as a new row.

header_row <- colnames(scraped_data[[1]])
scraped_data[[1]] <- rbind(header_row, scraped_data[[1]])

Note that the column name remains the same

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jackson angell