Skip to content

Commit

Permalink
Adds shares of students with debt for independent students.
Browse files Browse the repository at this point in the history
  • Loading branch information
dc0sic committed Apr 30, 2024
1 parent 5bf40bf commit f59718f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions student_loans/make_student_loan_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ read_shares = function(fname)
col_types = rep("text", 6)
range="B6:G18"
sheets = list(
list(sheet="Dependent BA", taxstatus="Dependent", educ="BA"),
list(sheet="Dependent non-BA", taxstatus="Dependent", educ="Some college")
list(sheet="Dependent BA", taxstatus="Dependent", educ="BA"),
list(sheet="Dependent non-BA", taxstatus="Dependent", educ="Some college"),
list(sheet="Independent BA", taxstatus="Independent", educ="BA"),
list(sheet="Independent non-BA", taxstatus="Independent", educ="Some college")
)
read_share_sheet = function(x, fname)
{
Expand Down

0 comments on commit f59718f

Please sign in to comment.