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

I'm new to SAS (using the university edition) and am having issues with using Linear Regression.

I loaded a CSV file and then in Tasks and Utilities > Tasks > Statistics > Linear Regression I selected WORK.BP (BP = filename) for my data. When I try to select my dependent variable SAS says "No columns are available."

The CVS file appears to have loaded correctly and has 2 columns so I can't figure out what the issue is.

 

Thanks for the help.

 

This is the code I used for loading the file:

 

data BP;
infile '/folders/myfolders/BP.csv' dlm =',' firstobs=2;
input BP  $Pressure$;
run;

 

And this is what the output looks like 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Remove the dollar signs from the INPUT statement.  They are making both of your variables character.  Since regression requires numeric variables, there are no variables that can be used for regression.  (Yes, there are cases where a character variable is used to create dummy variables, but that is not the case here.)

View solution in original post

3 REPLIES 3
Astounding
PROC Star

Remove the dollar signs from the INPUT statement.  They are making both of your variables character.  Since regression requires numeric variables, there are no variables that can be used for regression.  (Yes, there are cases where a character variable is used to create dummy variables, but that is not the case here.)

cedge113
Calcite | Level 5

Thank you for the help!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 2759 views
  • 3 likes
  • 3 in conversation