dm'log;clear;output;clear'; ****************************************************************************; *** Source: 01/10/04, http://taylor.ifas.ufl.edu/marine/Thesis.pdf ***; *** SHARKS OF THE INSHORE COASTAL ATLANTIC WATERS OF BREVARD COUNTY, ***; *** FLORIDA, WITH EMPHASIS ON THE SPINNER SHARK, CARCHARHINUS BREVIPINNA ***; *** by CRAIG W. AUBREY, M S Thesis, College of Arts and Sciences ***; *** University of Central Florida, Orlando, Florida, 2001 ***; ****************************************************************************; options ps=512 ls=132 nocenter nodate nonumber nolabel; filename input 'C:\Geaghan\Current\EXST7025\Spring2008\Homework2008\Shark morphology\shark.txt'; ODS HTML style=minimal rs=none body='C:\Geaghan\Current\EXST7025\Spring2008\Homework2008\Shark morphology\Sharks.html' ; Title1 'Analysis of Shark data from AUBREY, 2001'; Title2 'Analysis of Atlantic sharpnose sharks'; data sharks; infile input missover lrecl=200 pad; input Species $ 1-25 SharkNo SetNo Year Month Day Time $ AM_PM $ Depth_m Lat_Deg Lat_Min Lon_Deg Lon_Min Sex $ PCL_cm FL_cm STL_cm Weight_kg; label FL_cm = 'FL is fork length in cm', PCL_cm = 'Precaudal length (e.g. standard length)' STL_cm = 'Stretched Total Length'; datalines; proc print data=sharks; run;