The UNIVERSITY_TEST_SCORES Data Set

DATA Step to Create the UNIVERSITY_TEST_SCORES Data Set

The raw data in the DATA step is used to create the following data sets:
  • OUT.UNIVERSITY_TEST_SCORES
  • OUT.UNIVERSITY_TEST_SCORES2
  • OUT.UNIVERSITY_TEST_SCORES3
  • OUT.UNIVERSITY_TEST_SCORES4
  • OUT.UNIVERSITY_TEST_SCORES5
  • OUT_ERROR1
  • OUT.ERROR2
  • OUT.ERROR3
libname out 'your-data-library'; data out.university_test_scores; input Test $ Gender $ Year TestScore; datalines; Verbal m 2005 504 Verbal f 2005 496 Verbal m 2006 504 Verbal f 2006 497 Verbal m 2007 501 Verbal f 2007 497 Verbal m 2008 505 Verbal f 2008 502 Verbal m 2009 507 Verbal f 2009 503 Verbal m 2010 507 Verbal f 2010 503 Verbal m 2011 509 Verbal f 2011 502 Math m 2005 ...

Get Step-by-Step Programming with Base SAS 9.4 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.