── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ tidyr::expand() masks Matrix::expand()
✖ srvyr::filter() masks dplyr::filter(), stats::filter()
✖ dplyr::lag() masks stats::lag()
✖ tidyr::pack() masks Matrix::pack()
✖ tidyr::unpack() masks Matrix::unpack()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
Background: Data was obtained from a request from HHSC for FFY 2024 (October-September)
Broken out by:
Women
Infants (under age 1)
Children(ages 1-14)
Statewide and by county
Loading Data
Rows: 255 Columns: 5
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (2): Location, DataFormat
dbl (1): LocationId
lgl (2): TimeFrame, Data
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
#is all 254 counties are there should be 3048 fiscal_year <-rbind(october, november, december, january, february, march, april, may, june, july, august, september) |>filter(!is.na(Women_Enr)) |>rename(Location ="County Name") |>mutate(Location =str_to_title(Location))
final_children <-rbind(texas_children, final_county_data_child)#checking N/A values - extra Texas from first join w locationIDSfinal_children |>filter(is.na(Data))
# A tibble: 3 × 5
LocationId Location TimeFrame DataFormat Data
<dbl> <chr> <dbl> <chr> <dbl>
1 6531 Borden 2023 Number NA
2 6649 King 2023 Number NA
3 6665 Loving 2023 Number NA
final_infants <-rbind(texas_infants, final_county_data_infants)#checking N/A values - extra Texas from first join w locationIDSfinal_infants |>filter(is.na(Data))
# A tibble: 3 × 5
LocationId Location TimeFrame DataFormat Data
<dbl> <chr> <dbl> <chr> <dbl>
1 6531 Borden 2023 Number NA
2 6649 King 2023 Number NA
3 6665 Loving 2023 Number NA