Good morning
I am trying to read this file in R.
 
Nome AK 2.5 15 Miami FL 6.75
18 Raleigh NC . 12


This what the code is for SAS, I ma trying to di the same in R.

Input more than one observation from each record;
DATA rainfall;
INFILE ’c:\MyRawData\Precipitation.dat’;
INPUT City $ State $ NormalRain MeanDaysRain @@;
RUN;
PROC PRINT DATA = rainfall;
TITLE ’Normal Total Precipitation and’;
TITLE2 ’Mean Days with Precipitation for July’;
RUN;

Thanks.
------A Dieu soit la Gloire--------
        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to