Lab 4: Childcare Costs in California

I advise you to focus particularly on:

  • Setting chunk options carefully.

  • Making sure you don’t print out more output than you need.

  • Making sure you don’t assign more objects than necessary. Avoid “object junk” in your environment.

  • Making your code readable and nicely formatted.

  • Thinking through your desired result before writing any code.

Download starter .qmd file

The Data

In this lab we’re going look at the median weekly cost of childcare in California. The data come to us from TidyTuesday. A detailed description of the data can be found here. You will need to use this data dictionary to complete the lab!

We also have information from the California State Controller on tax revenue for california counties from 2005 - 2018. I compiled the data from this website for you. Note that there is no data for San Franscisco County. The variables included in the ca_tax_revenue.csv data file (loaded below) include:

  • entity_name: County name
  • year: fiscal year
  • total_property_taxes: total revenue in $ from property taxes
  • sales_and_use_taxes: total revenue in $ from sales and use taxes

0. Load the appropriate libraries and the data.

# load libraries
# load data
childcare_costs <- read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2023/2023-05-09/childcare_costs.csv')
Error in read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2023/2023-05-09/childcare_costs.csv"): could not find function "read_csv"
counties <- read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2023/2023-05-09/counties.csv')
Error in read_csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2023/2023-05-09/counties.csv"): could not find function "read_csv"
tax_rev <- read_csv('https://raw.githubusercontent.com/manncz/stat-331-s25/main/labs/lab4/data/ca_tax_revenue.csv')
Error in read_csv("https://raw.githubusercontent.com/manncz/stat-331-s25/main/labs/lab4/data/ca_tax_revenue.csv"): could not find function "read_csv"

1. Briefly describe the data (~ 4 sentences). What information does it contain?

California Childcare Costs

2. Let’s focus only on California. Create a ca_childcare dataset containing (1) county information and (2) all information from the childcare_costs dataset.

a. Sketch a game plan for completing this task. You should do all of this within one pipeline

b. Implement/code your game plan to create the dataset of childcare costs in California. Checkpoint: There are 58 counties in CA and 11 years in the dataset. Therefore, your new dataset should have 638 observations.

# code for Q2

3. Now, lets add the tax revenue information to the ca_childcare dataset. Add the data from tax_rev for the counties and years that are already in the ca_childcare data. Overwrite the old ca_childcare data with this dataset. Checkpoint: you are just adding columns here, so your new dataset should still have 638 observations

# code for Q3

4. Using a function from the forcats package, complete the code below to create a new variable where each county is categorized into one of the 10 Census regions in California. Use the Region description (from the plot), not the Region number. The code below will help you get started.

Code
# defining 10 census regions

superior_counties <- c("Butte","Colusa","El Dorado",
                       "Glenn","Lassen","Modoc",
                       "Nevada","Placer","Plumas",
                       "Sacramento","Shasta","Sierra","Siskiyou",
                       "Sutter","Tehama","Yolo","Yuba")

north_coast_counties <- c("Del Norte","Humboldt","Lake",
                          "Mendocino","Napa","Sonoma","Trinity")

san_fran_counties <- c("Alameda","Contra Costa","Marin",
                       "San Francisco","San Mateo","Santa Clara",
                       "Solano")

n_san_joaquin_counties <- c("Alpine","Amador","Calaveras","Madera",
                            "Mariposa","Merced","Mono","San Joaquin",
                            "Stanislaus","Tuolumne")

central_coast_counties <- c("Monterey","San Benito","San Luis Obispo",
                            "Santa Barbara","Santa Cruz","Ventura")

s_san_joaquin_counties <- c("Fresno","Inyo","Kern","Kings","Tulare")

inland_counties <- c("Riverside","San Bernardino")

la_county <- "Los Angeles"

orange_county  <- "Orange"

san_diego_imperial_counties <- c("Imperial","San Diego")
# finish this code for Q4

ca_childcare <- ca_childcare |> 
  mutate(county_name = str_remove(county_name, " County"))
Error in mutate(ca_childcare, county_name = str_remove(county_name, " County")): could not find function "mutate"
Tip

I have provided you with code that eliminates the word “County” from each of the county names in your ca_childcare dataset. You should keep this line of code and pipe into the rest of your data manipulations.

You will learn about the str_remove() function from the stringr package next week!

5. Let’s consider the median household income of each region, and how that income has changed over time. Create a table with ten rows, one for each region, and two columns, one for 2008 and one for 2018 (plus a column for region). The cells should contain the median() of the median household income (expressed in 2018 dollars) of the region and the study_year. Order the rows by 2018 values from highest income to lowest income.

Tip

This will require transforming your data! Sketch out what you want the data to look like before you begin to code. You should be starting with your California dataset that contains the regions.

# code for Q5

6. Which California region had the lowest median full-time median weekly price for center-based childcare for infants in 2018? Does this region correspond to the region with the lowest median income in 2018 that you found in Q4?

Warning

The code for the first question should give me the EXACT answer. This means having the code output the exact row(s) and variable(s) necessary for providing the solution. To answer the second question, compare this output with the output from Q4.

# code for Q6

7. The following plot shows, for all ten regions, the change over time of the full-time median price for center-based childcare for infants, toddlers, and preschoolers. Recreate the plot. You do not have to replicate the exact colors or theme, but your plot should have the same content, including the order of the facets and legend, reader-friendly labels, axes breaks, and a loess smoother.

Hints

This will require transforming your data! Sketch out what you want the data to look like before you begin to code. You should be starting with your California dataset that contains the regions.

A point on the plot represents one county and year.

You should use a forcats function to reorder the legend automatically

Try setting aspect.ratio = 1 in theme() if your plot is squished

Again, your plot does not need to look exactly like this one!!

Remember to avoid “object junk” in your environment!

Plot to recreate
# code for Q7

Median Household Income vs. Childcare Costs for Infants

Refresher on Linear Regression

While a second course in statistics is a pre-requisite for this class, here is a refresher on simple linear regression with a single predictor.

8. Create a scatterplot showing the relationship between median household income (expressed in 2018 dollars) and the full-time median weekly price charged for center-based childcare for an infant in California. Overlay a linear regression line (lm) to show the trend.

# plot for scatterplot

9. Look up the documentation for lm() and fit a linear regression model to the relationship shown in your plot above (recall: \(y = mx+b\)). Identify the coefficient estimates from the model.

# complete the code provided
reg_mod1 <- lm()
Error in terms.formula(formula, data = data): argument is not a valid model
summary(reg_mod1)
Error: object 'reg_mod1' not found

10. Do you have evidence to conclude there is a relationship between the median household income and the median weekly cost of center-based childcare for infants in California? Cite values from your output for support.

Open-Ended Analysis

Let’s give you a taste of what to expect for the take-home portion of the midterm exam.

11. Investigate the full-time median price for childcare in a center-based setting versus the full-time median price for childcare in a family (in-home) setting in California. Posit a research question. This could include any other variables in the dataset as well. Present one table of summary statistics and one plot that helps to address your research question.

This write-up should include:

  • A description of the data you are using
  • Your research question
  • One well-designed table of summary statistics
    • Note, this should not be inference (results from a statistical test)
    • This should be a summary table of the data itself, like Q5
  • One well-designed plot
  • Descriptions of the table and plot that both:
    • Explain what the table/plot is literally showing (e.g. the median cost by year)
    • Analyze what you learn from the table/plot about your research question

The table and plot should not show reduntant information, they should be used to gain more insight on your question.

Dr. C will be reading through these and providing some feedback!