Skip to content

Commit

Permalink
inst4_manage_satisfied
Browse files Browse the repository at this point in the history
  • Loading branch information
wibeasley committed Sep 17, 2024
1 parent 5bce2d7 commit 470587f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
Binary file modified data-public/derived/variable-label.parquet
Binary file not shown.
11 changes: 8 additions & 3 deletions data-public/metadata/variable-label.csv
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ inst4_charge_reason,checkbox,98,"other",98,"Other {charge_reasons_other}"
inst4_charge_effort,radio,1,"Overstaffed",1,"Overstaffed"
inst4_charge_effort,radio,2,"Appropriately staffed",2,"Appropriately staffed"
inst4_charge_effort,radio,3,"Understaffed",3,"Understaffed"
inst4_charge_success,radio,1,"Not at all",1,"Not at all"`
inst4_charge_success,radio,2,"Somewhat",2,"Somewhat"`
inst4_charge_success,radio,3,"Very",3,"Very"`
inst4_charge_success,radio,1,"Not at all",1,"Not at all"
inst4_charge_success,radio,2,"Somewhat",2,"Somewhat"
inst4_charge_success,radio,3,"Very",3,"Very"
inst4_manage_satisfied,radio,1,"completely satisfied",1,"Completely satisfied"
inst4_manage_satisfied,radio,2,"somewhat satisfied",2,"Somewhat satisfied"
inst4_manage_satisfied,radio,3,"neutral",3,"Neutral"
inst4_manage_satisfied,radio,4,"somewhat dissatisifed",4,"Somewhat dissatisifed"
inst4_manage_satisfied,radio,5,"very dissatisfied",5,"Very dissatisfied"
8 changes: 4 additions & 4 deletions manipulation/institution-ellis.R
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ ds <-
) |>
map_to_radio( "inst4_charge_effort") |>
map_to_radio( "inst4_charge_success") |>
# map_to_checkbox( "inst4_manage_satisfied") |>
map_to_radio( "inst4_manage_satisfied") |>
# map_to_checkbox( "inst4_regulatory") |>
# map_to_checkbox( "inst4_regulatory_charge") |>
# map_to_checkbox( "inst4_validation") |>
Expand Down Expand Up @@ -557,9 +557,9 @@ checkmate::assert_logical( ds$inst4_charge_reason_additional_fte , any.mis
checkmate::assert_logical( ds$inst4_charge_reason_support_specific , any.missing=F )
checkmate::assert_logical( ds$inst4_charge_reason_other , any.missing=F )
checkmate::assert_integer( ds$inst4_charge_staff_count , any.missing=T , lower=0, upper=15 )
checkmate::assert_factor( ds$inst4_charge_effort , any.missing=T )
checkmate::assert_factor( ds$inst4_charge_success , any.missing=T )
# checkmate::assert_integer( ds$inst4_manage_satisfied , any.missing=T , lower=1, upper=5 )
checkmate::assert_factor( ds$inst4_charge_effort , any.missing=T )
checkmate::assert_factor( ds$inst4_charge_success , any.missing=T )
checkmate::assert_factor( ds$inst4_manage_satisfied , any.missing=T )
# checkmate::assert_character(ds$inst4_regulatory , any.missing=T , pattern="^.{1,11}$" )
# checkmate::assert_integer( ds$inst4_regulatory_charge , any.missing=T , lower=1, upper=99 )
# checkmate::assert_integer( ds$inst4_validation , any.missing=T , lower=0, upper=2 )
Expand Down

0 comments on commit 470587f

Please sign in to comment.