powered by
Save raw scouting data
save_raw_data(df, file = NULL)
If file is provided, the file path. Otherwise, NULL.
file
A data frame containing scouting data.
Optional file path. If NULL, no file is written.
df <- data.frame( name = "Player A", age = 21, market_value_est = 500, club = "Club A", league_country = "Indonesia" ) tmp <- tempfile(fileext = ".csv") save_raw_data(df, file = tmp)
Run the code above in your browser using DataLab