BookmarkSubscribeRSS Feed
hz16g22
Obsidian | Level 7

I am trying to give a proper title to this logistic regression model but I have no clue how to make it shorter without losing making it hard to understand, any advice?

this is what it looks right now 

proc logistic data=amphibians;
	model rich_site(event='1')= NR SR FR RR;
	title 'Logistic Regression model where the variables "NR,SR,FR,RR" are used to predict the probability of the variable "rich_site" being 1';
run;
1 REPLY 1
PaigeMiller
Diamond | Level 26

Split it into two or more lines

 

title 'Logistic Regression model where the variables "NR,SR,FR,RR"';
title2 'are used to predict the probability of the variable "rich_site" being 1';

 

 

Also, in titles, there is no need for variable names to be in quotes or double-quotes.

--
Paige Miller

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 875 views
  • 0 likes
  • 2 in conversation