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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 3181 views
  • 3 likes
  • 3 in conversation