BookmarkSubscribeRSS Feed
jinc
Calcite | Level 5

I have a dataset where I have to build a credit score model for bad customers. It is a logistic regression model. I want to build the model and thereafter test it. Can anybody tell me the sas code to split the data.

2 REPLIES 2
art297
Opal | Level 21

If you just want a 50/50 split then you could use something like:

 

data build validate;
  set sashelp.prdsale;
  if uniform(0) le .5 then output build;
  else output validate;
run;

Art, CEO, AnalystFinder.com

 

Reeza
Super User

PROC SURVEYSELECT is typically used to generate random samples. If you want to do bootstrapping or any type of cross validation, I highly recommend the paper by David Cassell, Don't be loopy.

 

http://www2.sas.com/proceedings/forum2007/183-2007.pdf

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 626 views
  • 0 likes
  • 3 in conversation