This is not homework; this is for my job. I am working on creating a SAS database for research. I am out of options and almost out of time. I am losing my mind trying to make this data set work. I am editing this because I am hoping that I am creating a good data set but right now I can’t run any of the analysis that my employer needs by Tuesday. Last week he told me that it was not up to par, and I had to rewrite the dataset. I did but now of course it does not work I could lose my job does anyone have any ideas for something like this

data ListA;

input Category MovieTitle $50. Mental_Change Sickness_Disease Relationships_Timeline Family_Based_Relationships Health_Wellness Intimacy Employment Money Maslow Government Computers Multicultural Animals Diversity Children Miscellaneous;

Datalines;

1 “Movie_A” 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0

2 “Movie_B” 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0

3 “Movie_C” 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0

4 “Movie_D” 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0

5 “Movie_E” 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0

7 “Movie_F” 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0

8 “Movie_G” 1 0 0 1 0 1 0 1 0 0 1 0 0 0 1

9 “Movie_F” 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0

;

run;

I have also tried running this:

data ListA;

input Category MovieTitle $50. Mental_Change=1 Sickness_Disease=2 Relationships_Timeline =3 Family_Based_Relationships=4 Health_Wellness=5 Intimacy=6 Employment=7 Money=8 Maslow=9 Government=10 Computers=11 Multicultural=12 Animals=13 Diversity=14 Children=14 Miscellaneous=15

Datalines;

1 “Movie_A” 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0

2 “Movie_B” 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0

3 “Movie_C” 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0

4 “Movie_D” 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0

5 “Movie_E” 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0

7 “Movie_F” 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0

8 “Movie_G” 1 0 0 1 0 1 0 1 0 0 1 0 0 0 1

9 “Movie_F” 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0

;

run;

I have no idea why I can’t write this dataset and run the statistical tests on it. I am debating doing them by hand. Does anyone have any ideas? This is very important for my career. I spend all of my time watching videos on SAS and have spent hundreds on books. I have tried writing this data set ten times. The last dataset I wrote worked just fine but it wasn’t what they were looking for. It was much smaller! I have over 200 movies that I need to run on these themes by tomorrow. I will take any SAS ideas or tips or even tricks that I can do it by hand at this point.

I have the SAS dataset written out alll the way with each movie with each category but nothing works. It also does not help that when I am using SAS on one of the provided devices

NOTE: Unable to open SASUSER.REGSTRY. WORK.REGSTRY will be opened instead.

NOTE: All registry changes will be lost at the end of the session.

WARNING: Unable to copy SASUSER registry to WORK registry. Because of this,

WARNING: you will not see registry customizations during this session.

NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.

NOTE: All profile changes will be lost at the end of the session.

NOTE: This SAS session is using a registry in WORK. All changes will be lost at the end of this

NOTE: session.

NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.

NOTE: All profile changes will be lost at the end of the session.

It also does not help that SAS does not save on any of the devices I have so I can no longer turn off either of my computers.