BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
malikah_sph
Calcite | Level 5

 Can anyone help with this code: 

 


data models_baseline;
set baseline;
if institution="GreaterBaltimoreMedicalCenter"
or institution="Wenatchee Valley(confluence)"
or institution="UnityPointHealth"
or institution="Northshore"
or institution="SCLHS(Saint Joseph Hospital)"
or institution="Coborn Cancer Center(St Cloud Hospital)"
or institution="PromedicaResearchInstitute"
or institution="AlbertEinsteinHealthNetwork"
or institution="SouthGeorgiaMedicalCenter"
or institution="Sanford Clinic North"
or institution="WheatonFranciscanHealthcare"
or institution="EssentiaInstituteofRuralHealth" then model="CO";
else if institution="Joliet Oncology Hematology Associates"
or institution="Spartanburg Regional Health (Gibbs Cancer Ctr)"
or institution="Legacy Health"
or institution="Parkview Hospital"
or institution="Aultman Hospital"
or institution="Augusta Health Cancer Center"
or institution="Hennepin County Medical Center"
or institution="Oregon Health & Sciences University"
or institution="Memorial Medical Center"
or institution="New England Cancer Specialists" then model="OO";
else institution="Canton Mercy Medical Center"
or institution="Park Ridge Health"
or institution="Akron General Medical Center"
or institution="St. Mary Medical Center"
or institution="St. Luke's Hospital of Kansas City"
or institution="Anchorage Radiation Therapy Center"
or institution="St. Vincent's Healthcare"
or institution="St. Jude Medical Center"
or institution="The Presbyterian Hospital (Novant Health)"
or institution="Berkshire Medical Center" then model="ORW";
run;

 

When I run the code, no data shows us up for the variable "model" and I also get the following error messages:

 

15193
15194 data models_baseline;
15195 set baseline;
15196 if institution="GreaterBaltimoreMedicalCenter"
15197 or institution="Wenatchee Valley(confluence)"
15198 or institution="UnityPointHealth"
15199 or institution="Northshore"
15200 or institution="SCLHS(Saint Joseph Hospital)"
15201 or institution="Coborn Cancer Center(St Cloud Hospital)"
15202 or institution="PromedicaResearchInstitute"
15203 or institution="AlbertEinsteinHealthNetwork"
15204 or institution="SouthGeorgiaMedicalCenter"
15205 or institution="Sanford Clinic North"
15206 or institution="WheatonFranciscanHealthcare"
15207 or institution="EssentiaInstituteofRuralHealth" then model="CO";
15208 else if institution="Joliet Oncology Hematology Associates"
15209 or institution="Spartanburg Regional Health (Gibbs Cancer Ctr)"
15210 or institution="Legacy Health"
15211 or institution="Parkview Hospital"
15212 or institution="Aultman Hospital"
15213 or institution="Augusta Health Cancer Center"
15214 or institution="Hennepin County Medical Center"
15215 or institution="Oregon Health & Sciences University"
15216 or institution="Memorial Medical Center"
15217 or institution="New England Cancer Specialists" then model="OO";
15218 else institution="Canton Mercy Medical Center"
15219 or institution="Park Ridge Health"
15220 or institution="Akron General Medical Center"
15221 or institution="St. Mary Medical Center"
15222 or institution="St. Luke's Hospital of Kansas City"
15223 or institution="Anchorage Radiation Therapy Center"
15224 or institution="St. Vincent's Healthcare"
15225 or institution="St. Jude Medical Center"
15226 or institution="The Presbyterian Hospital (Novant Health)"
15227 or institution="Berkshire Medical Center" then model="ORW";
----
388
202
ERROR 388-185: Expecting an arithmetic operator.

ERROR 202-322: The option or parameter is not recognized and will be ignored.

15228 run;

NOTE: Character values have been converted to numeric values at the places given by:
(Line):(Column).
15196:16 15197:16 15198:16 15199:16 15200:16 15201:16 15202:16 15203:16
15204:16 15205:16 15206:16 15207:16 15208:21 15209:16 15210:16 15211:16
15212:16 15213:16 15214:16 15215:16 15216:16 15217:16 15218:18 15219:16
15220:16 15221:16 15222:16 15223:16 15224:16 15225:16 15226:16 15227:16
15227:48 15227:54
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.MODELS_BASELINE may be incomplete. When this step was stopped
there were 0 observations and 146 variables.
WARNING: Data set WORK.MODELS_BASELINE was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds

 

I would greatly appreciate the help. Usually if/else statements are not this hard for me but for some reason, I am stuck here. 

 

Thank you in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Review your input set. For some reason SAS things institution is a numeric variable not a character variable the way you're treating it.

 

What happens if you run the following? Do you see the institution values you're checking for?

 

proc freq data=baseline;
table institution;
format institution; run;

Also, if you have these values listed in another dataset it may make it easier to categorize them using a format. 

 

View solution in original post

8 REPLIES 8
Reeza
Super User

1. Format your code and you'll see the error

2. Use IN rather than multiple OR's 

 

Your last condition is else, but it should be else-if.

Institution in ("GreaterBaltimoreMedicalCenter", "Wenatchee Valley(confluence)", "UnityPointHealth" ....) then 

 

 

data models_baseline;
	set baseline;

	if institution="GreaterBaltimoreMedicalCenter" or 
		institution="Wenatchee Valley(confluence)" or institution="UnityPointHealth" 
		or institution="Northshore" or institution="SCLHS(Saint Joseph Hospital)" or 
		institution="Coborn Cancer Center(St Cloud Hospital)" or 
		institution="PromedicaResearchInstitute" or 
		institution="AlbertEinsteinHealthNetwork" or 
		institution="SouthGeorgiaMedicalCenter" or institution="Sanford Clinic North" 
		or institution="WheatonFranciscanHealthcare" or 
		institution="EssentiaInstituteofRuralHealth" then
			model="CO";
	else if institution="Joliet Oncology Hematology Associates" or 
		institution="Spartanburg Regional Health (Gibbs Cancer Ctr)" or 
		institution="Legacy Health" or institution="Parkview Hospital" or 
		institution="Aultman Hospital" or institution="Augusta Health Cancer Center" 
		or institution="Hennepin County Medical Center" or 
		institution="Oregon Health & Sciences University" or 
		institution="Memorial Medical Center" or 
		institution="New England Cancer Specialists" then
			model="OO";
	else if
		institution="Canton Mercy Medical Center" or institution="Park Ridge Health" 
			or institution="Akron General Medical Center" or 
			institution="St. Mary Medical Center" or 
			institution="St. Luke's Hospital of Kansas City" or 
			institution="Anchorage Radiation Therapy Center" or 
			institution="St. Vincent's Healthcare" or 
			institution="St. Jude Medical Center" or 
			institution="The Presbyterian Hospital (Novant Health)" or 
			institution="Berkshire Medical Center" then model="ORW";
run;

 

malikah_sph
Calcite | Level 5
Thank you for your help, however, it is still not working.
Reeza
Super User

@malikah_sph wrote:
Thank you for your help, however, it is still not working.

What does that mean? Are you getting an error, if so post your full log?

malikah_sph
Calcite | Level 5

The log showed the following:

 

19858 data models_baseline;
19859 set baseline;
19860
19861 if institution="GreaterBaltimoreMedicalCenter" or
19862 institution="Wenatchee Valley(confluence)" or institution="UnityPointHealth"
19863 or institution="Northshore" or institution="SCLHS(Saint Joseph Hospital)" or
19864 institution="Coborn Cancer Center(St Cloud Hospital)" or
19865 institution="PromedicaResearchInstitute" or
19866 institution="AlbertEinsteinHealthNetwork" or
19867 institution="SouthGeorgiaMedicalCenter" or institution="Sanford Clinic North"
19868 or institution="WheatonFranciscanHealthcare" or
19869 institution="EssentiaInstituteofRuralHealth" then
19870 model=1;
19871 else if institution="Joliet Oncology Hematology Associates" or
19872 institution="Spartanburg Regional Health (Gibbs Cancer Ctr)" or
19873 institution="Legacy Health" or institution="Parkview Hospital" or
19874 institution="Aultman Hospital" or institution="Augusta Health Cancer Center"
19875 or institution="Hennepin County Medical Center" or
19876 institution="Oregon Health & Sciences University" or
19877 institution="Memorial Medical Center" or
19878 institution="New England Cancer Specialists" then
19879 model=2;
19880 else if
19881 institution="Canton Mercy Medical Center" or institution="Park Ridge Health"
19882 or institution="Akron General Medical Center" or
19883 institution="St. Mary Medical Center" or
19884 institution="St. Luke's Hospital of Kansas City" or
19885 institution="Anchorage Radiation Therapy Center" or
19886 institution="St. Vincent's Healthcare" or
19887 institution="St. Jude Medical Center" or
19888 institution="The Presbyterian Hospital (Novant Health)" or
19889 institution="Berkshire Medical Center" then model=3;
19890 run;

NOTE: Character values have been converted to numeric values at the places given by:
(Line):(Column).
19861:20 19862:21 19862:67 19863:24 19863:52 19864:21 19865:21 19866:21
19867:21 19867:64 19868:24 19869:21 19871:25 19872:21 19873:21 19873:52
19874:21 19874:55 19875:24 19876:21 19877:21 19878:21 19881:21 19881:66
19882:28 19883:25 19884:25 19885:25 19886:25 19887:25 19888:25 19889:25
NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.
NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.
NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.
NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.
NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.
NOTE: Invalid numeric data, 'Coborn Cancer Center(St Cloud Hospital)' , at line 19864 column
21.
NOTE: Invalid numeric data, 'PromedicaResearchInstitute' , at line 19865 column 21.
NOTE: Invalid numeric data, 'AlbertEinsteinHealthNetwork' , at line 19866 column 21.
NOTE: Invalid numeric data, 'SouthGeorgiaMedicalCenter' , at line 19867 column 21.
NOTE: Invalid numeric data, 'Sanford Clinic North' , at line 19867 column 64.
NOTE: Invalid numeric data, 'WheatonFranciscanHealthcare' , at line 19868 column 24.
NOTE: Invalid numeric data, 'EssentiaInstituteofRuralHealth' , at line 19869 column 21.
NOTE: Invalid numeric data, 'Joliet Oncology Hematology Associates' , at line 19871 column 25.
NOTE: Invalid numeric data, 'Spartanburg Regional Health (Gibbs Cancer Ctr)' , at line 19872
column 21.
NOTE: Invalid numeric data, 'Legacy Health' , at line 19873 column 21.
NOTE: Invalid numeric data, 'Parkview Hospital' , at line 19873 column 52.
NOTE: Invalid numeric data, 'Aultman Hospital' , at line 19874 column 21.
NOTE: Invalid numeric data, 'Augusta Health Cancer Center' , at line 19874 column 55.
NOTE: Invalid numeric data, 'Hennepin County Medical Center' , at line 19875 column 24.
NOTE: Invalid numeric data, 'Oregon Health & Sciences University' , at line 19876 column 21.
NOTE: Invalid numeric data, 'Memorial Medical Center' , at line 19877 column 21.
NOTE: Invalid numeric data, 'New England Cancer Specialists' , at line 19878 column 21.
NOTE: Invalid numeric data, 'Canton Mercy Medical Center' , at line 19881 column 21.
NOTE: Invalid numeric data, 'Park Ridge Health' , at line 19881 column 66.
NOTE: Invalid numeric data, 'Akron General Medical Center' , at line 19882 column 28.
NOTE: Invalid numeric data, 'St. Mary Medical Center' , at line 19883 column 25.
NOTE: Invalid numeric data, 'St. Luke's Hospital of Kansas City' , at line 19884 column 25.
NOTE: Invalid numeric data, 'Anchorage Radiation Therapy Center' , at line 19885 column 25.
NOTE: Invalid numeric data, 'St. Vincent's Healthcare' , at line 19886 column 25.
NOTE: Invalid numeric data, 'St. Jude Medical Center' , at line 19887 column 25.
NOTE: Invalid numeric data, 'The Presbyterian Hospital (Novant Health)' , at line 19888 column
25.
NOTE: Invalid numeric data, 'Berkshire Medical Center' , at line 19889 column 25.
record_id=1044 consent=Yes future_research=Yes city_name=Wenatchee state2_74c=WA
zipcode=98801-1077 institution=Wenatchee Valley (Confluence) clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=Katherine Kemble, DNP, FNP-C, AOCNP, ARNP
clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.
clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.
clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.
clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.
clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.
clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.
clinician_newengland=. new_id=. gender=Male transgender=. transgender_2=. reassignment=.
sex_reasstxt= sexreass_txttime=. dob=1945-10-06 hispanic=No race___1=Checked
race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=4-year college graduate income=$75,000 to $99,999 mar_stat=Married employ=Retired
state=. can_type=Prostate can_stage=Don't know date_dx=10-2013 txt_type___1=Checked
txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked
txt_other= hormone=No, I have not or will not be receiving hormone therapy for this cancer.
pain=1 fatigue=4 sleep_disturbance=5 Extreme Concerns memory_concentration=4
nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=1
dentalmouth_problems=2 weight_changes=5 Extreme Concerns balance=2 strength=2 neuropathy=4
lymphedema=3 bone_health=3 hairskin_issues=4 body_changes=4 bow_bladder=5 Extreme Concerns
hot_flashes=2 sexual_issues=3 fertility_issues=0 No Concerns house=2 family=. talk_cancer=3
return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=4
debt_medbills=1 normal=3 managing_emotions=5 (extreme concerns) coping=2 uncertainty=4
fear_recurrence=4 stress_management=4 isolation=3 intimacy=3 gratitude=4 wellbeing=.
relationship=3 supp_services=3 counseling=3 genetic_counseling=3 confidence_physical=2 q19=2
q20=3 q21=. q22=3 q23=3 q24=3 q25=3 primary_care=None oncology=None other_specialty=2-3 times
mental_health=None hospital_inpatient=None hospital_outpatient=1 time emergency_room=None
urgent_care=None other_specify=. provider_other= delay_care___1=Unchecked
delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked
delay_care___5=Checked delay_care___6=Unchecked delay_care___7=Unchecked
delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked
delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked
delay_care___14=Unchecked delay_care___15=Unchecked delay_care___16=Unchecked
delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete
survey_compdate=2016-04-22 model=. _ERROR_=1 _N_=1
NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.
NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.
NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.
NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.
NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.
NOTE: Invalid numeric data, 'Coborn Cancer Center(St Cloud Hospital)' , at line 19864 column
21.
NOTE: Invalid numeric data, 'PromedicaResearchInstitute' , at line 19865 column 21.
NOTE: Invalid numeric data, 'AlbertEinsteinHealthNetwork' , at line 19866 column 21.
NOTE: Invalid numeric data, 'SouthGeorgiaMedicalCenter' , at line 19867 column 21.
NOTE: Invalid numeric data, 'Sanford Clinic North' , at line 19867 column 64.
NOTE: Invalid numeric data, 'WheatonFranciscanHealthcare' , at line 19868 column 24.
NOTE: Invalid numeric data, 'EssentiaInstituteofRuralHealth' , at line 19869 column 21.
NOTE: Invalid numeric data, 'Joliet Oncology Hematology Associates' , at line 19871 column 25.
NOTE: Invalid numeric data, 'Spartanburg Regional Health (Gibbs Cancer Ctr)' , at line 19872
column 21.
NOTE: Invalid numeric data, 'Legacy Health' , at line 19873 column 21.
NOTE: Invalid numeric data, 'Parkview Hospital' , at line 19873 column 52.
NOTE: Invalid numeric data, 'Aultman Hospital' , at line 19874 column 21.
NOTE: Invalid numeric data, 'Augusta Health Cancer Center' , at line 19874 column 55.
NOTE: Invalid numeric data, 'Hennepin County Medical Center' , at line 19875 column 24.
NOTE: Invalid numeric data, 'Oregon Health & Sciences University' , at line 19876 column 21.
NOTE: Invalid numeric data, 'Memorial Medical Center' , at line 19877 column 21.
NOTE: Invalid numeric data, 'New England Cancer Specialists' , at line 19878 column 21.
NOTE: Invalid numeric data, 'Canton Mercy Medical Center' , at line 19881 column 21.
NOTE: Invalid numeric data, 'Park Ridge Health' , at line 19881 column 66.
NOTE: Invalid numeric data, 'Akron General Medical Center' , at line 19882 column 28.
NOTE: Invalid numeric data, 'St. Mary Medical Center' , at line 19883 column 25.
NOTE: Invalid numeric data, 'St. Luke's Hospital of Kansas City' , at line 19884 column 25.
NOTE: Invalid numeric data, 'Anchorage Radiation Therapy Center' , at line 19885 column 25.
NOTE: Invalid numeric data, 'St. Vincent's Healthcare' , at line 19886 column 25.
NOTE: Invalid numeric data, 'St. Jude Medical Center' , at line 19887 column 25.
NOTE: Invalid numeric data, 'The Presbyterian Hospital (Novant Health)' , at line 19888 column
25.
NOTE: Invalid numeric data, 'Berkshire Medical Center' , at line 19889 column 25.
record_id=1043 consent=Yes future_research=Yes city_name=Hopedale state2_74c=OH zipcode=43976
institution=Canton Mercy Medical Center clinician=. clinician_canton=Joan Edwards, RN, OCN
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=. new_id=. gender=Male
transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1954-12-25
hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked
race___5=Unchecked race___6=Unchecked educat=High school graduate or GED
income=Less than $25,000 mar_stat=Divorced employ=Not working state=OH
can_type=Colorectal (including **bleep**) can_stage=Don't know date_dx=07-2015
txt_type___1=Unchecked txt_type___2=Checked txt_type___3=Checked txt_type___4=Unchecked
txt_type___5=Unchecked txt_other=
hormone=No, I have not or will not be receiving hormone therapy for this cancer.
pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=0 No Concerns
memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns
weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns
neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=0 No Concerns
hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns
hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=. house=0 (no concerns)
family=0 (no concerns) talk_cancer=0 (no concerns) return_work=5 (extreme concerns)
health_insurance=5 (extreme concerns) financial_concerns=5 (extreme concerns)
debt_medbills=5 (extreme concerns) normal=. managing_emotions=0 (no concerns)
coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=0 (no concerns)
stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=. counseling=0 (no concerns) genetic_counseling=0 (no concerns)
confidence_physical=3 q19=3 q20=4 q21=3 q22=3 q23=3 q24=3 q25=5 Totally confident
primary_care=2-3 times oncology=. other_specialty=. mental_health=. hospital_inpatient=.
hospital_outpatient=. emergency_room=. urgent_care=. other_specify=. provider_other=
delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-05-11 model=. _ERROR_=1 _N_=2
NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.
NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.
NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.
NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.
NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.
NOTE: Invalid numeric data, 'Coborn Cancer Center(St Cloud Hospital)' , at line 19864 column
21.
NOTE: Invalid numeric data, 'PromedicaResearchInstitute' , at line 19865 column 21.
NOTE: Invalid numeric data, 'AlbertEinsteinHealthNetwork' , at line 19866 column 21.
NOTE: Invalid numeric data, 'SouthGeorgiaMedicalCenter' , at line 19867 column 21.
NOTE: Invalid numeric data, 'Sanford Clinic North' , at line 19867 column 64.
NOTE: Invalid numeric data, 'WheatonFranciscanHealthcare' , at line 19868 column 24.
NOTE: Invalid numeric data, 'EssentiaInstituteofRuralHealth' , at line 19869 column 21.
NOTE: Invalid numeric data, 'Joliet Oncology Hematology Associates' , at line 19871 column 25.
NOTE: Invalid numeric data, 'Spartanburg Regional Health (Gibbs Cancer Ctr)' , at line 19872
column 21.
NOTE: Invalid numeric data, 'Legacy Health' , at line 19873 column 21.
NOTE: Invalid numeric data, 'Parkview Hospital' , at line 19873 column 52.
NOTE: Invalid numeric data, 'Aultman Hospital' , at line 19874 column 21.
NOTE: Invalid numeric data, 'Augusta Health Cancer Center' , at line 19874 column 55.
NOTE: Invalid numeric data, 'Hennepin County Medical Center' , at line 19875 column 24.
NOTE: Invalid numeric data, 'Oregon Health & Sciences University' , at line 19876 column 21.
NOTE: Invalid numeric data, 'Memorial Medical Center' , at line 19877 column 21.
NOTE: Invalid numeric data, 'New England Cancer Specialists' , at line 19878 column 21.
NOTE: Invalid numeric data, 'Canton Mercy Medical Center' , at line 19881 column 21.
NOTE: Invalid numeric data, 'Park Ridge Health' , at line 19881 column 66.
NOTE: Invalid numeric data, 'Akron General Medical Center' , at line 19882 column 28.
NOTE: Invalid numeric data, 'St. Mary Medical Center' , at line 19883 column 25.
NOTE: Invalid numeric data, 'St. Luke's Hospital of Kansas City' , at line 19884 column 25.
NOTE: Invalid numeric data, 'Anchorage Radiation Therapy Center' , at line 19885 column 25.
NOTE: Invalid numeric data, 'St. Vincent's Healthcare' , at line 19886 column 25.
NOTE: Invalid numeric data, 'St. Jude Medical Center' , at line 19887 column 25.
NOTE: Invalid numeric data, 'The Presbyterian Hospital (Novant Health)' , at line 19888 column
25.
NOTE: Invalid numeric data, 'Berkshire Medical Center' , at line 19889 column 25.
record_id=1042 consent=Yes future_research=Yes city_name= state2_74c=. zipcode=
institution=Canton Mercy Medical Center clinician=.
clinician_canton=Jane Westfall, RN, BSN, OSN clinician_parkridge=. clinician_wenatchee=.
clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.
clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.
clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.
clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.
clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.
clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.
clinician_newengland=. new_id=. gender=Female transgender=. transgender_2=. reassignment=.
sex_reasstxt= sexreass_txttime=. dob=1975-08-07 hispanic=No race___1=Checked
race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Some college or 2-year degree income=$100,000 or more mar_stat=Married
employ=Working- as a paid employee state=OH can_type=Breast can_stage=Stage 0 date_dx=11-2015
txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked
txt_type___5=Checked txt_other=Tamoxifen hormone=Yes, I am receiving hormone therapy. pain=2
fatigue=2 sleep_disturbance=3 memory_concentration=1 nausea_vomiting=1
poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=1 balance=0 No Concerns strength=3
neuropathy=0 No Concerns lymphedema=2 bone_health=2 hairskin_issues=2 body_changes=2
bow_bladder=0 No Concerns hot_flashes=4 sexual_issues=1 fertility_issues=0 No Concerns house=1
family=1 talk_cancer=1 return_work=2 health_insurance=1 financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=3 managing_emotions=2 coping=1 uncertainty=3
fear_recurrence=4 stress_management=2 isolation=0 (no concerns) intimacy=1
gratitude=0 (no concerns) wellbeing=1 relationship=0 (no concerns) supp_services=1
counseling=0 (no concerns) genetic_counseling=0 (no concerns) confidence_physical=4 q19=3
q20=5 Totally confident q21=3 q22=1 Not at all confident q23=5 Totally confident
q24=5 Totally confident q25=5 Totally confident primary_care=None oncology=2-3 times
other_specialty=8 or more times mental_health=None hospital_inpatient=1 time
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=
delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-05-05 model=. _ERROR_=1 _N_=3
NOTE: Invalid numeric data, 'GreaterBaltimoreMedicalCenter' , at line 19861 column 20.
NOTE: Invalid numeric data, 'Wenatchee Valley(confluence)' , at line 19862 column 21.
NOTE: Invalid numeric data, 'UnityPointHealth' , at line 19862 column 67.
NOTE: Invalid numeric data, 'Northshore' , at line 19863 column 24.
NOTE: Over 100 NOTES, additional NOTES suppressed.
NOTE: Invalid numeric data, 'SCLHS(Saint Joseph Hospital)' , at line 19863 column 52.
record_id=1041 consent=Yes future_research=Yes city_name=Portland state2_74c=ME zipcode=04103
institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.
clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.
clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.
clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.
clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.
clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.
clinician_memorialmedctr=. clinician_newengland=Dixie Knoll, FNP new_id=. gender=Female
transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1972-07-17
hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked
race___5=Unchecked race___6=Unchecked educat=Some college or 2-year degree
income=$25,000 to $49,999 mar_stat=Divorced employ=Working- as a paid employee state=ME
can_type=Breast can_stage=Stage 1 date_dx=05-2015 txt_type___1=Checked txt_type___2=Unchecked
txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=Yes, I am receiving hormone therapy. pain=2 fatigue=4 sleep_disturbance=4
memory_concentration=. nausea_vomiting=3 poor_appetitie=0 No Concerns
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns weight_changes=3
balance=0 No Concerns strength=0 No Concerns neuropathy=0 No Concerns lymphedema=0 No Concerns
bone_health=1 hairskin_issues=0 No Concerns body_changes=0 No Concerns
bow_bladder=0 No Concerns hot_flashes=5 Extreme Concerns sexual_issues=0 No Concerns
fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)
talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)
financial_concerns=3 debt_medbills=3 normal=0 (no concerns) managing_emotions=0 (no concerns)
coping=0 (no concerns) uncertainty=5 (extreme concerns) fear_recurrence=5 (extreme concerns)
stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)
confidence_physical=5 Totally confident q19=4 q20=5 Totally confident q21=4 q22=4
q23=5 Totally confident q24=5 Totally confident q25=5 Totally confident primary_care=None
oncology=6-7 times other_specialty=None mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=
delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-05-02 model=. _ERROR_=1 _N_=4
record_id=1040 consent=Yes future_research=Yes city_name=Gorham state2_74c=ME zipcode=04038
institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.
clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.
clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.
clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.
clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.
clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.
clinician_memorialmedctr=. clinician_newengland=Dixie Knoll, FNP new_id=. gender=Female
transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1984-10-04
hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked
race___5=Unchecked race___6=Unchecked educat=High school graduate or GED income=Don't know
mar_stat=Married employ=Working- as a paid employee state=ME can_type=Breast can_stage=Stage 2
date_dx=06-2015 txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked
txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=No, I have not or will not be receiving hormone therapy for this cancer. pain=2
fatigue=3 sleep_disturbance=3 memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns
poor_appetitie=0 No Concerns trouble_swallowing=1 dentalmouth_problems=0 No Concerns
weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns neuropathy=1
lymphedema=0 No Concerns bone_health=0 No Concerns hairskin_issues=0 No Concerns
body_changes=0 No Concerns bow_bladder=0 No Concerns hot_flashes=2 sexual_issues=0 No Concerns
fertility_issues=4 house=1 family=0 (no concerns) talk_cancer=0 (no concerns) return_work=1
health_insurance=4 financial_concerns=4 debt_medbills=4 normal=1 managing_emotions=1
coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=2 stress_management=2
isolation=1 intimacy=1 gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=1
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)
confidence_physical=4 q19=3 q20=4 q21=2 q22=3 q23=4 q24=3 q25=2 primary_care=None
oncology=1 time other_specialty=1 time mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=None
provider_other= delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-05-03 model=. _ERROR_=1 _N_=5
record_id=1039 consent=Yes future_research=Yes city_name=Canton state2_74c=OH zipcode=44707
institution=Canton Mercy Medical Center clinician=.
clinician_canton=Jane Westfall, RN, BSN, OSN clinician_parkridge=. clinician_wenatchee=.
clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.
clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.
clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.
clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.
clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.
clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.
clinician_newengland=. new_id=. gender=Female transgender=. transgender_2=. reassignment=.
sex_reasstxt= sexreass_txttime=. dob=1942-06-14 hispanic=No race___1=Checked
race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=High school graduate or GED income=Less than $25,000 mar_stat=Divorced employ=Retired
state=OH can_type=Breast can_stage=Stage 1 date_dx=07-2015 txt_type___1=Checked
txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked txt_type___5=Unchecked
txt_other= hormone=Yes, I am receiving hormone therapy. pain=0 No Concerns fatigue=1
sleep_disturbance=. memory_concentration=2 nausea_vomiting=0 No Concerns
poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=1 balance=0 No Concerns strength=2
neuropathy=. lymphedema=1 bone_health=0 No Concerns hairskin_issues=1
body_changes=0 No Concerns bow_bladder=0 No Concerns hot_flashes=0 No Concerns
sexual_issues=0 No Concerns fertility_issues=0 No Concerns house=0 (no concerns)
family=0 (no concerns) talk_cancer=0 (no concerns) return_work=0 (no concerns)
health_insurance=0 (no concerns) financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=1 coping=0 (no concerns)
uncertainty=0 (no concerns) fear_recurrence=2 stress_management=0 (no concerns)
isolation=0 (no concerns) intimacy=0 (no concerns) gratitude=0 (no concerns)
wellbeing=0 (no concerns) relationship=0 (no concerns) supp_services=0 (no concerns)
counseling=0 (no concerns) genetic_counseling=2 confidence_physical=5 Totally confident
q19=5 Totally confident q20=5 Totally confident q21=3 q22=3 q23=5 Totally confident q24=4 q25=3
primary_care=None oncology=2-3 times other_specialty=None mental_health=None
hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None
other_specify=. provider_other= delay_care___1=Checked delay_care___2=Unchecked
delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked
delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked
delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked
delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked
delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked
delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=.
_ERROR_=1 _N_=6
record_id=1038 consent=Yes future_research=Yes city_name=Pillager state2_74c=MN zipcode=56473
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1945-10-19 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Some college or 2-year degree income=Don't know mar_stat=Married employ=Retired state=MN
can_type=Breast can_stage=Stage 1 date_dx=08-2015 txt_type___1=Checked txt_type___2=Unchecked
txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=Yes, I completed hormone therapy. pain=1 fatigue=1 sleep_disturbance=4
memory_concentration=1 nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns
weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns
neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=3 hairskin_issues=0 No Concerns
body_changes=1 bow_bladder=0 No Concerns hot_flashes=4 sexual_issues=0 No Concerns
fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)
talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=2 financial_concerns=2
debt_medbills=2 normal=1 managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=1
fear_recurrence=1 stress_management=0 (no concerns) isolation=1 intimacy=0 (no concerns)
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=2
confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident q21=4
q22=3 q23=5 Totally confident q24=5 Totally confident q25=3 primary_care=None
oncology=2-3 times other_specialty=None mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=
delay_care___1=Unchecked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=. _ERROR_=1 _N_=7
record_id=1037 consent=Yes future_research=Yes city_name=Brainerd state2_74c=MN zipcode=56401
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1944-08-05 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Some college or 2-year degree income=Less than $25,000 mar_stat=Widowed employ=Retired
state=MN can_type=Breast can_stage=Stage 1 date_dx=10-2015 txt_type___1=Checked
txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked
txt_other= hormone=Yes, I am receiving hormone therapy. pain=2 fatigue=0 No Concerns
sleep_disturbance=0 No Concerns memory_concentration=0 No Concerns
nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns
strength=0 No Concerns neuropathy=0 No Concerns lymphedema=1 bone_health=0 No Concerns
hairskin_issues=0 No Concerns body_changes=1 bow_bladder=0 No Concerns
hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns
house=0 (no concerns) family=0 (no concerns) talk_cancer=1 return_work=0 (no concerns)
health_insurance=0 (no concerns) financial_concerns=1 debt_medbills=0 (no concerns)
normal=0 (no concerns) managing_emotions=0 (no concerns) coping=0 (no concerns)
uncertainty=0 (no concerns) fear_recurrence=2 stress_management=0 (no concerns) isolation=1
intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=0 (no concerns)
relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)
genetic_counseling=1 confidence_physical=3 q19=4 q20=5 Totally confident q21=2 q22=2
q23=5 Totally confident q24=5 Totally confident q25=4 primary_care=1 time oncology=2-3 times
other_specialty=None mental_health=None hospital_inpatient=None hospital_outpatient=None
emergency_room=None urgent_care=None other_specify=2-3 times provider_other=Surgeon
delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=. _ERROR_=1 _N_=8
record_id=1036 consent=Yes future_research=Yes city_name=Louisville state2_74c=OH zipcode=44641
institution=Canton Mercy Medical Center clinician=.
clinician_canton=Jane Westfall, RN, BSN, OSN clinician_parkridge=. clinician_wenatchee=.
clinician_akron=. clinician_northshore=. clinician_berkshire=. clinician_legacy=.
clinician_joliet=. clinician_aultman=. clinician_stcloud=. clinician_parkview=.
clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=.
clinician_sclhs=. clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=.
clinician_augusta=. clinician_anchorage=. clinician_hennepin=. clinician_sanford=.
clinician_wheaton=. clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=.
clinician_newengland=. new_id=. gender=Female transgender=. transgender_2=. reassignment=.
sex_reasstxt= sexreass_txttime=. dob=1981-01-14 hispanic=No race___1=Checked
race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Some college or 2-year degree income=$100,000 or more mar_stat=Married
employ=Working- as a paid employee state=OH can_type=Breast can_stage=Stage 2 date_dx=05-2015
txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked
txt_type___5=Unchecked txt_other= hormone=Yes, I am receiving hormone therapy.
pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=0 No Concerns
memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns
weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns
neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=0 No Concerns
hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns
hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns
house=0 (no concerns) family=0 (no concerns) talk_cancer=0 (no concerns)
return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=0 (no concerns)
coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=0 (no concerns)
stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=3
confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident
q21=5 Totally confident q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident
q25=4 primary_care=None oncology=1 time other_specialty=1 time mental_health=None
hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None
other_specify=None provider_other= delay_care___1=Checked delay_care___2=Unchecked
delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked
delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked
delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked
delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked
delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked
delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=.
_ERROR_=1 _N_=9
record_id=1035 consent=Yes future_research=Yes city_name=Crosslake state2_74c=MN zipcode=56442
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1952-06-12 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Some college or 2-year degree income=$75,000 to $99,999 mar_stat=Married employ=Retired
state=MN can_type=Breast can_stage=Stage 2 date_dx=06-2015 txt_type___1=Checked
txt_type___2=Checked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked
txt_other= hormone=Yes, I am receiving hormone therapy. pain=. fatigue=2
sleep_disturbance=0 No Concerns memory_concentration=1 nausea_vomiting=0 No Concerns
poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns dentalmouth_problems=1
weight_changes=3 balance=0 No Concerns strength=2 neuropathy=3 lymphedema=1 bone_health=2
hairskin_issues=4 body_changes=2 bow_bladder=0 No Concerns hot_flashes=0 No Concerns
sexual_issues=5 Extreme Concerns fertility_issues=0 No Concerns house=0 (no concerns)
family=0 (no concerns) talk_cancer=3 return_work=0 (no concerns)
health_insurance=0 (no concerns) financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=4 managing_emotions=4 coping=1 uncertainty=1
fear_recurrence=2 stress_management=3 isolation=4 intimacy=5 (extreme concerns) gratitude=3
wellbeing=2 relationship=4 supp_services=3 counseling=2 genetic_counseling=0 (no concerns)
confidence_physical=3 q19=3 q20=3 q21=3 q22=4 q23=3 q24=4 q25=5 Totally confident
primary_care=None oncology=1 time other_specialty=. mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=. provider_other=
delay_care___1=Unchecked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Checked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-04-25 model=. _ERROR_=1 _N_=10
record_id=1034 consent=Yes future_research=Yes city_name=Baxter state2_74c=MN zipcode=56425
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1971-08-28 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=4-year college graduate income=$50,000 to $74,999 mar_stat=Married
employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 2 date_dx=11-2014
txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked
txt_type___5=Unchecked txt_other= hormone=Yes, I am receiving hormone therapy. pain=3
fatigue=2 sleep_disturbance=3 memory_concentration=3 nausea_vomiting=0 No Concerns
poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns dentalmouth_problems=1
weight_changes=0 No Concerns balance=1 strength=3 neuropathy=0 No Concerns
lymphedema=0 No Concerns bone_health=4 hairskin_issues=0 No Concerns body_changes=1
bow_bladder=0 No Concerns hot_flashes=0 No Concerns sexual_issues=3
fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)
talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)
financial_concerns=0 (no concerns) debt_medbills=0 (no concerns) normal=0 (no concerns)
managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=0 (no concerns)
fear_recurrence=0 (no concerns) stress_management=0 (no concerns) isolation=0 (no concerns)
intimacy=1 gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)
confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident q21=4
q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident q25=5 Totally confident
primary_care=1 time oncology=2-3 times other_specialty=None mental_health=None
hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None
other_specify=. provider_other= delay_care___1=Checked delay_care___2=Unchecked
delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked
delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked
delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked
delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked
delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked
delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-26 model=.
_ERROR_=1 _N_=11
record_id=1033 consent=Yes future_research=Yes city_name=Wenatchee state2_74c=WA zipcode=98801
institution=Wenatchee Valley (Confluence) clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=Katherine Kemble, DNP, FNP-C, AOCNP, ARNP clinician_akron=.
clinician_northshore=. clinician_berkshire=. clinician_legacy=. clinician_joliet=.
clinician_aultman=. clinician_stcloud=. clinician_parkview=. clinician_stmary=.
clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=. clinician_sclhs=.
clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=.
clinician_anchorage=. clinician_hennepin=. clinician_sanford=. clinician_wheaton=.
clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1948-08-04 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Some college or 2-year degree income=$50,000 to $74,999 mar_stat=Married employ=Retired
state=WA can_type=Breast can_stage=Don't know date_dx=12-2015 txt_type___1=Checked
txt_type___2=Unchecked txt_type___3=Unchecked txt_type___4=Unchecked txt_type___5=Unchecked
txt_other= hormone=Yes, I am receiving hormone therapy. pain=1 fatigue=4 sleep_disturbance=3
memory_concentration=3 nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns
trouble_swallowing=2 dentalmouth_problems=0 No Concerns weight_changes=2 balance=3 strength=3
neuropathy=2 lymphedema=0 No Concerns bone_health=3 hairskin_issues=1 body_changes=3
bow_bladder=3 hot_flashes=3 sexual_issues=0 No Concerns fertility_issues=0 No Concerns
house=0 (no concerns) family=2 talk_cancer=2 return_work=0 (no concerns) health_insurance=3
financial_concerns=3 debt_medbills=3 normal=3 managing_emotions=4 coping=3 uncertainty=4
fear_recurrence=4 stress_management=3 isolation=2 intimacy=0 (no concerns) gratitude=3
wellbeing=3 relationship=3 supp_services=1 counseling=1 genetic_counseling=1
confidence_physical=3 q19=3 q20=3 q21=3 q22=1 Not at all confident q23=5 Totally confident
q24=3 q25=3 primary_care=1 time oncology=2-3 times other_specialty=None mental_health=None
hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None
other_specify=. provider_other= delay_care___1=Unchecked delay_care___2=Unchecked
delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked
delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked
delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked
delay_care___12=Unchecked delay_care___13=Checked delay_care___14=Unchecked
delay_care___15=Checked delay_care___16=Unchecked delay_care___17=Unchecked
delaycare_otherreason=I'm tired of seeing doctors previsit_baseline_su_v_0=Complete
survey_compdate=2016-04-25 model=. _ERROR_=1 _N_=12
record_id=1032 consent=Yes future_research=Yes city_name=Brainem state2_74c=MN zipcode=56401
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1969-07-17 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Graduate school degree income=$100,000 or more mar_stat=Divorced
employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 2 date_dx=01-2015
txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked txt_type___4=Unchecked
txt_type___5=Unchecked txt_other=
hormone=No, I have not or will not be receiving hormone therapy for this cancer.
pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=0 No Concerns
memory_concentration=0 No Concerns nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns
weight_changes=0 No Concerns balance=0 No Concerns strength=0 No Concerns neuropathy=2
lymphedema=1 bone_health=0 No Concerns hairskin_issues=3 body_changes=0 No Concerns
bow_bladder=0 No Concerns hot_flashes=0 No Concerns sexual_issues=0 No Concerns
fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns)
talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)
financial_concerns=0 (no concerns) debt_medbills=0 (no concerns) normal=0 (no concerns)
managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=0 (no concerns)
fear_recurrence=0 (no concerns) stress_management=0 (no concerns) isolation=0 (no concerns)
intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=0 (no concerns)
relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)
genetic_counseling=0 (no concerns) confidence_physical=5 Totally confident
q19=5 Totally confident q20=5 Totally confident q21=5 Totally confident q22=5 Totally confident
q23=5 Totally confident q24=5 Totally confident q25=5 Totally confident primary_care=None
oncology=None other_specialty=None mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=None
provider_other= delay_care___1=Unchecked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Unchecked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-04-22 model=. _ERROR_=1 _N_=13
record_id=1031 consent=Yes future_research=Yes city_name=Akeley state2_74c=MN zipcode=56433
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1952-03-21 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=High school graduate or GED income=$50,000 to $74,999 mar_stat=Married
employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 1 date_dx=08-2015
txt_type___1=Checked txt_type___2=Checked txt_type___3=Unchecked txt_type___4=Unchecked
txt_type___5=Unchecked txt_other= hormone=Yes, I am receiving hormone therapy.
pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=1 memory_concentration=0 No Concerns
nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns
strength=0 No Concerns neuropathy=2 lymphedema=0 No Concerns bone_health=1
hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns
hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns
house=0 (no concerns) family=0 (no concerns) talk_cancer=0 (no concerns)
return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=0 (no concerns)
coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=1
stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=1
confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident
q21=5 Totally confident q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident
q25=5 Totally confident primary_care=None oncology=1 time other_specialty=1 time
mental_health=None hospital_inpatient=None hospital_outpatient=None emergency_room=None
urgent_care=None other_specify=None provider_other= delay_care___1=Unchecked
delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked
delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked
delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked
delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked
delay_care___14=Unchecked delay_care___15=Checked delay_care___16=Unchecked
delay_care___17=Unchecked delaycare_otherreason=Services not recommended during chemo.
previsit_baseline_su_v_0=Complete survey_compdate=2016-04-21 model=. _ERROR_=1 _N_=14
record_id=1030 consent=Yes future_research=Yes city_name=Massillon state2_74c=OH zipcode=44647
institution=Canton Mercy Medical Center clinician=. clinician_canton=Joan Edwards, RN, OCN
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=. new_id=. gender=Female
transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1975-10-17
hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked
race___5=Unchecked race___6=Unchecked educat=Some college or 2-year degree
income=Less than $25,000 mar_stat=Married employ=Disabled state=OH can_type=Breast
can_stage=Stage 1 date_dx=10-2015 txt_type___1=Checked txt_type___2=Unchecked
txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=Yes, I am receiving hormone therapy. pain=2 fatigue=2 sleep_disturbance=0 No Concerns
memory_concentration=2 nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns weight_changes=2 balance=1
strength=2 neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=0 No Concerns
hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns
hot_flashes=2 sexual_issues=2 fertility_issues=0 No Concerns house=2 family=2
talk_cancer=0 (no concerns) return_work=0 (no concerns) health_insurance=0 (no concerns)
financial_concerns=4 debt_medbills=1 normal=2 managing_emotions=2 coping=2 uncertainty=2
fear_recurrence=1 stress_management=4 isolation=2 intimacy=4 gratitude=2 wellbeing=2
relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)
genetic_counseling=3 confidence_physical=4 q19=4 q20=4 q21=4 q22=4 q23=4 q24=4 q25=4
primary_care=None oncology=None other_specialty=None mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=1 time
provider_other=Surgeon- for checkup delay_care___1=Unchecked delay_care___2=Unchecked
delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked
delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked
delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked
delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked
delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Checked
delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-19 model=.
_ERROR_=1 _N_=15
record_id=1029 consent=Yes future_research=Yes city_name=Saco state2_74c=ME zipcode=04072
institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.
clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.
clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.
clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.
clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.
clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.
clinician_memorialmedctr=. clinician_newengland=Danielle F. Bowen, NP-C new_id=. gender=Female
transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1961-04-01
hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Checked
race___5=Unchecked race___6=Unchecked educat=Some college or 2-year degree
income=Less than $25,000 mar_stat=Divorced employ=Working- as a paid employee state=ME
can_type=Breast can_stage=Stage 1 date_dx=02-2014 txt_type___1=Checked txt_type___2=Unchecked
txt_type___3=Unchecked txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=Yes, I am receiving hormone therapy. pain=. fatigue=2 sleep_disturbance=3
memory_concentration=5 Extreme Concerns nausea_vomiting=0 No Concerns poor_appetitie=1
trouble_swallowing=0 No Concerns dentalmouth_problems=0 No Concerns weight_changes=2
balance=0 No Concerns strength=2 neuropathy=2 lymphedema=0 No Concerns
bone_health=0 No Concerns hairskin_issues=0 No Concerns body_changes=0 No Concerns
bow_bladder=0 No Concerns hot_flashes=2 sexual_issues=0 No Concerns
fertility_issues=0 No Concerns house=0 (no concerns) family=0 (no concerns) talk_cancer=2
return_work=0 (no concerns) health_insurance=3 financial_concerns=3
debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=2 coping=0 (no concerns)
uncertainty=2 fear_recurrence=2 stress_management=0 (no concerns) isolation=0 (no concerns)
intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=2 relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=2
confidence_physical=4 q19=4 q20=5 Totally confident q21=4 q22=4 q23=5 Totally confident
q24=5 Totally confident q25=5 Totally confident primary_care=2-3 times oncology=6-7 times
other_specialty=4-5 times mental_health=. hospital_inpatient=. hospital_outpatient=.
emergency_room=. urgent_care=. other_specify=. provider_other= delay_care___1=Checked
delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked
delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked
delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked
delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked
delay_care___14=Unchecked delay_care___15=Unchecked delay_care___16=Unchecked
delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete
survey_compdate=2016-04-14 model=. _ERROR_=1 _N_=16
record_id=1028 consent=Yes future_research=Yes city_name=Saco state2_74c=ME zipcode=04072
institution=New England Cancer Specialists clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.
clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.
clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.
clinician_promedica=. clinician_sclhs=. clinician_einstein=. clinician_stlukes=.
clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.
clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.
clinician_memorialmedctr=. clinician_newengland=Danielle F. Bowen, NP-C new_id=. gender=Female
transgender=. transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1972-04-06
hispanic=No race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked
race___5=Unchecked race___6=Unchecked educat=Graduate school degree income=Less than $25,000
mar_stat=Never married employ=Disabled state=ME can_type=Breast can_stage=Stage 3
date_dx=01-2015 txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked
txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=Yes, I am receiving hormone therapy. pain=1 fatigue=1 sleep_disturbance=2
memory_concentration=3 nausea_vomiting=0 No Concerns poor_appetitie=1
trouble_swallowing=0 No Concerns dentalmouth_problems=1 weight_changes=1 balance=1 strength=3
neuropathy=2 lymphedema=2 bone_health=0 No Concerns hairskin_issues=2 body_changes=3
bow_bladder=1 hot_flashes=4 sexual_issues=4 fertility_issues=0 No Concerns house=1 family=1
talk_cancer=2 return_work=5 (extreme concerns) health_insurance=5 (extreme concerns)
financial_concerns=5 (extreme concerns) debt_medbills=5 (extreme concerns) normal=4
managing_emotions=3 coping=3 uncertainty=4 fear_recurrence=4 stress_management=3 isolation=2
intimacy=4 gratitude=2 wellbeing=3 relationship=3 supp_services=2 counseling=1
genetic_counseling=0 (no concerns) confidence_physical=4 q19=3 q20=4 q21=4 q22=4 q23=4 q24=3
q25=1 Not at all confident primary_care=None oncology=None other_specialty=None
mental_health=2-3 times hospital_inpatient=None hospital_outpatient=None emergency_room=None
urgent_care=None other_specify=2-3 times provider_other=neurology delay_care___1=Unchecked
delay_care___2=Unchecked delay_care___3=Checked delay_care___4=Unchecked
delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked
delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked
delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked
delay_care___14=Checked delay_care___15=Unchecked delay_care___16=Unchecked
delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete
survey_compdate=2016-04-11 model=. _ERROR_=1 _N_=17
record_id=1027 consent=Yes future_research=Yes city_name= state2_74c=. zipcode=
institution=Wenatchee Valley (Confluence) clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=Katherine Kemble, DNP, FNP-C, AOCNP, ARNP clinician_akron=.
clinician_northshore=. clinician_berkshire=. clinician_legacy=. clinician_joliet=.
clinician_aultman=. clinician_stcloud=. clinician_parkview=. clinician_stmary=.
clinician_unitypoint=. clinician_spartanburg=. clinician_promedica=. clinician_sclhs=.
clinician_einstein=. clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=.
clinician_anchorage=. clinician_hennepin=. clinician_sanford=. clinician_wheaton=.
clinician_oregon=. clinician_essentia=. clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1941-12-11 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=Graduate school degree income=$50,000 to $74,999 mar_stat=Married employ=Retired
state=WA can_type=Breast can_stage=Stage 1 date_dx=12-2015 txt_type___1=Checked
txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked txt_type___5=Unchecked
txt_other= hormone=Yes, I am receiving hormone therapy. pain=0 No Concerns
fatigue=0 No Concerns sleep_disturbance=0 No Concerns memory_concentration=0 No Concerns
nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=1 balance=0 No Concerns
strength=0 No Concerns neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=2
hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=0 No Concerns
hot_flashes=1 sexual_issues=0 No Concerns fertility_issues=0 No Concerns house=0 (no concerns)
family=0 (no concerns) talk_cancer=0 (no concerns) return_work=0 (no concerns)
health_insurance=0 (no concerns) financial_concerns=2 debt_medbills=2 normal=0 (no concerns)
managing_emotions=0 (no concerns) coping=0 (no concerns) uncertainty=0 (no concerns)
fear_recurrence=2 stress_management=0 (no concerns) isolation=0 (no concerns)
intimacy=0 (no concerns) gratitude=0 (no concerns) wellbeing=0 (no concerns)
relationship=0 (no concerns) supp_services=0 (no concerns) counseling=0 (no concerns)
genetic_counseling=0 (no concerns) confidence_physical=5 Totally confident
q19=5 Totally confident q20=5 Totally confident q21=4 q22=3 q23=4 q24=4 q25=3 primary_care=None
oncology=None other_specialty=None mental_health=None hospital_inpatient=None
hospital_outpatient=None emergency_room=None urgent_care=None other_specify=None
provider_other= delay_care___1=Checked delay_care___2=Unchecked delay_care___3=Unchecked
delay_care___4=Unchecked delay_care___5=Unchecked delay_care___6=Unchecked
delay_care___7=Unchecked delay_care___8=Checked delay_care___9=Unchecked
delay_care___10=Unchecked delay_care___11=Unchecked delay_care___12=Unchecked
delay_care___13=Unchecked delay_care___14=Unchecked delay_care___15=Unchecked
delay_care___16=Unchecked delay_care___17=Unchecked delaycare_otherreason=
previsit_baseline_su_v_0=Complete survey_compdate=2016-04-18 model=. _ERROR_=1 _N_=18
record_id=1026 consent=Yes future_research=Yes city_name=Brainerb state2_74c=MN zipcode=56401
institution=Essentia Institute of Rural Health clinician=. clinician_canton=.
clinician_parkridge=. clinician_wenatchee=. clinician_akron=. clinician_northshore=.
clinician_berkshire=. clinician_legacy=. clinician_joliet=. clinician_aultman=.
clinician_stcloud=. clinician_parkview=. clinician_stmary=. clinician_unitypoint=.
clinician_spartanburg=. clinician_promedica=. clinician_sclhs=. clinician_einstein=.
clinician_stlukes=. clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=.
clinician_hennepin=. clinician_sanford=. clinician_wheaton=. clinician_oregon=.
clinician_essentia=Jessica Nybakken, CNP clinician_memorialmedctr=. clinician_newengland=.
new_id=. gender=Female transgender=. transgender_2=. reassignment=. sex_reasstxt=
sexreass_txttime=. dob=1957-03-17 hispanic=No race___1=Checked race___2=Unchecked
race___3=Unchecked race___4=Unchecked race___5=Unchecked race___6=Unchecked
educat=High school graduate or GED income=Less than $25,000 mar_stat=Divorced
employ=Working- as a paid employee state=MN can_type=Breast can_stage=Stage 1 date_dx=09-2014
txt_type___1=Checked txt_type___2=Unchecked txt_type___3=Checked txt_type___4=Unchecked
txt_type___5=Unchecked txt_other=
hormone=No, I have not or will not be receiving hormone therapy for this cancer.
pain=0 No Concerns fatigue=3 sleep_disturbance=3 memory_concentration=3 nausea_vomiting=.
poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns
strength=3 neuropathy=0 No Concerns lymphedema=0 No Concerns bone_health=3
hairskin_issues=0 No Concerns body_changes=0 No Concerns bow_bladder=3 hot_flashes=3
sexual_issues=0 No Concerns fertility_issues=0 No Concerns house=0 (no concerns)
family=0 (no concerns) talk_cancer=0 (no concerns) return_work=2
health_insurance=0 (no concerns) financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=2 managing_emotions=2 coping=2 uncertainty=0 (no concerns)
fear_recurrence=3 stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=.
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)
confidence_physical=3 q19=3 q20=4 q21=3 q22=4 q23=4 q24=5 Totally confident
q25=5 Totally confident primary_care=None oncology=None other_specialty=None mental_health=None
hospital_inpatient=None hospital_outpatient=None emergency_room=None urgent_care=None
other_specify=None provider_other= delay_care___1=Checked delay_care___2=Unchecked
delay_care___3=Unchecked delay_care___4=Unchecked delay_care___5=Unchecked
delay_care___6=Unchecked delay_care___7=Unchecked delay_care___8=Unchecked
delay_care___9=Unchecked delay_care___10=Unchecked delay_care___11=Unchecked
delay_care___12=Unchecked delay_care___13=Unchecked delay_care___14=Unchecked
delay_care___15=Unchecked delay_care___16=Unchecked delay_care___17=Unchecked
delaycare_otherreason= previsit_baseline_su_v_0=Complete survey_compdate=2016-04-15 model=.
_ERROR_=1 _N_=19
WARNING: Limit set by ERRORS= option reached. Further errors of this type will not be printed.
record_id=1025 consent=Yes future_research=Yes city_name= state2_74c=. zipcode=
institution=SCLHS (Saint Joseph Hospital) clinician=. clinician_canton=. clinician_parkridge=.
clinician_wenatchee=. clinician_akron=. clinician_northshore=. clinician_berkshire=.
clinician_legacy=. clinician_joliet=. clinician_aultman=. clinician_stcloud=.
clinician_parkview=. clinician_stmary=. clinician_unitypoint=. clinician_spartanburg=.
clinician_promedica=. clinician_sclhs=Deborah Cook, MD clinician_einstein=. clinician_stlukes=.
clinician_southgeorgia=. clinician_augusta=. clinician_anchorage=. clinician_hennepin=.
clinician_sanford=. clinician_wheaton=. clinician_oregon=. clinician_essentia=.
clinician_memorialmedctr=. clinician_newengland=. new_id=. gender=Female transgender=.
transgender_2=. reassignment=. sex_reasstxt= sexreass_txttime=. dob=1956-03-01 hispanic=No
race___1=Checked race___2=Unchecked race___3=Unchecked race___4=Unchecked race___5=Unchecked
race___6=Unchecked educat=Some college or 2-year degree income=$100,000 or more
mar_stat=Divorced employ=Working- as a paid employee state=CO can_type=Breast can_stage=Stage 3
date_dx=10-2014 txt_type___1=Checked txt_type___2=Checked txt_type___3=Checked
txt_type___4=Unchecked txt_type___5=Unchecked txt_other=
hormone=No, I have not or will not be receiving hormone therapy for this cancer.
pain=0 No Concerns fatigue=0 No Concerns sleep_disturbance=2 memory_concentration=0 No Concerns
nausea_vomiting=0 No Concerns poor_appetitie=0 No Concerns trouble_swallowing=0 No Concerns
dentalmouth_problems=0 No Concerns weight_changes=0 No Concerns balance=0 No Concerns
strength=0 No Concerns neuropathy=0 No Concerns lymphedema=0 No Concerns
bone_health=0 No Concerns hairskin_issues=2 body_changes=2 bow_bladder=0 No Concerns
hot_flashes=0 No Concerns sexual_issues=0 No Concerns fertility_issues=0 No Concerns
house=0 (no concerns) family=0 (no concerns) talk_cancer=0 (no concerns)
return_work=0 (no concerns) health_insurance=0 (no concerns) financial_concerns=0 (no concerns)
debt_medbills=0 (no concerns) normal=0 (no concerns) managing_emotions=0 (no concerns)
coping=0 (no concerns) uncertainty=0 (no concerns) fear_recurrence=0 (no concerns)
stress_management=0 (no concerns) isolation=0 (no concerns) intimacy=0 (no concerns)
gratitude=0 (no concerns) wellbeing=0 (no concerns) relationship=0 (no concerns)
supp_services=0 (no concerns) counseling=0 (no concerns) genetic_counseling=0 (no concerns)
confidence_physical=5 Totally confident q19=5 Totally confident q20=5 Totally confident
q21=5 Totally confident q22=5 Totally confident q23=5 Totally confident q24=5 Totally confident
q25=5 Totally confident primary_care=None oncology=4-5 times other_specialty=None
mental_health=None hospital_inpatient=None hospital_outpatient=None emergency_room=None
urgent_care=None other_specify=None provider_other= delay_care___1=Checked
delay_care___2=Unchecked delay_care___3=Unchecked delay_care___4=Unchecked
delay_care___5=Unchecked delay_care___6=Unchecked delay_care___7=Unchecked
delay_care___8=Unchecked delay_care___9=Unchecked delay_care___10=Unchecked
delay_care___11=Unchecked delay_care___12=Unchecked delay_care___13=Unchecked
delay_care___14=Unchecked delay_care___15=Unchecked delay_care___16=Unchecked
delay_care___17=Unchecked delaycare_otherreason= previsit_baseline_su_v_0=Complete
survey_compdate=2016-04-15 model=. _ERROR_=1 _N_=20
NOTE: There were 992 observations read from the data set WORK.BASELINE.
NOTE: The data set WORK.MODELS_BASELINE has 992 observations and 146 variables.
NOTE: DATA statement used (Total process time):
real time 0.34 seconds
cpu time 0.32 seconds

 

 

When I click on the data set, only the variable "model" (created in the if/else statement) is shown but no data is there. 

Reeza
Super User

Review your input set. For some reason SAS things institution is a numeric variable not a character variable the way you're treating it.

 

What happens if you run the following? Do you see the institution values you're checking for?

 

proc freq data=baseline;
table institution;
format institution; run;

Also, if you have these values listed in another dataset it may make it easier to categorize them using a format. 

 

malikah_sph
Calcite | Level 5

The program already has a format, when I run the freq procedure it shows the institution values. 

Reeza
Super User
My format statement removes the format to see underlying value. If theres a format applied you need to use PUT to convert value or use actual value.
malikah_sph
Calcite | Level 5

I used the actual value and it worked perfectly! Thank you so much.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 8 replies
  • 1014 views
  • 1 like
  • 2 in conversation