Nothing
# added to help maintain column naming consistency
library(dplyr)
mapBatting <- function(df) {
df <- df %>% select(-c(G_batting, G_old))
return(df)
}
mapHallOfFame <- function(df) {
df <- df %>% rename(yearID = yearid)
return(df)
}
mapHomeGames <- function(df) {
colnames(df) <- gsub("(.*)key$", "\\1.key", colnames(df))
colnames(df) <- gsub("^span(.*)", "span.\\1", colnames(df))
return(df)
}
mapParks <- function(df) {
colnames(df) <- gsub("^park(.*)", "park.\\1", colnames(df))
df <- df %>% select(-ID)
return(df)
}
mapPeople <- function(df) {
df <- df %>% select(-ID)
return(df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.