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