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;