Skip to content

Commit d3b64f1

Browse files
authored
Add files via upload
1 parent a7f644e commit d3b64f1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

january_demo/state_data_plan_survey.Rmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ This document highlights findings from the survey of external data users to info
1010
```{r setup, include=FALSE, warning=FALSE, echo=FALSE}
1111
# Load necessary libraries
1212
library(tidyverse)
13+
library(RCurl)
1314
library(knitr)
1415
library(scales)
1516
library(stringr)
1617
library(extrafont) # For custom fonts
1718
# font_import()
1819
1920
# Read and clean the survey data
20-
setwd("C:/R")
21-
survey_data <- read_csv("survey_results.csv", locale=locale(encoding="latin1")) %>%
21+
survey_data_link <- "https://github.com/CTOpenData/r-user-group/raw/main/january_demo/survey_results.csv"
22+
survey_data <- read_csv(survey_data_link, locale=locale(encoding="latin1")) %>%
2223
mutate(`Question: How do you utilize data from the State of Connecticut? (Select no more than 4)` = str_replace_all(
2324
`Question: How do you utilize data from the State of Connecticut? (Select no more than 4)`,
2425
c("I don’t. ;" = "I don’t currently use data from the State of Connecticut ",

0 commit comments

Comments
 (0)