dw_data_to_chart(x, chart_id, parse_dates = TRUE, api_key = "environment")
x | Required. A R object of class 'data.frame',to be uploaded as the Datawrapper data. |
---|---|
chart_id | Required. A Datawrapper-chart-id as character string, usually a five character combination of digits and letters, e.g. "aBcDe". Or a dw_chart-object. |
parse_dates | Optional. Defaults to TRUE. Should columns that contain a Date or as POSIX-object be automatically converted to a character vector? |
api_key | Optional. A Datawrapper-API-key as character string. Defaults to "environment" - tries to automatically retrieve the key that's stored in the .Reviron-file by |
A terminal message.
This function uploads a R-dataframe to Datawrapper.
Benedict Witzenberger
if (FALSE) dw_data_to_chart(df, "aBcDE") # uses the preset key in the .Renviron-file if (FALSE) dw_data_to_chart(df, chart_id = "a1B2Cd", api_key = "1234ABCD") # uses the specified key if (FALSE) dw_data_to_chart(df, chart_id = "a1B2Cd", parse_dates = FALSE) # do not parse Dates to characters