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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1054 views
  • 0 likes
  • 2 in conversation