02-10-2019
ablo
Fluorite | Level 6
Member since
09-13-2015
- 14 Posts
- 3 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by ablo
Subject Views Posted 1543 02-10-2019 12:02 PM 1560 02-10-2019 11:35 AM 1296 10-02-2018 04:50 PM 1310 10-02-2018 04:04 PM 2231 10-01-2018 06:36 PM 2235 10-01-2018 06:27 PM 2240 10-01-2018 05:47 PM 2274 10-01-2018 02:34 PM 2586 12-25-2015 12:27 PM 2594 12-25-2015 12:18 PM -
Activity Feed for ablo
- Posted Re: Can someone help me import a .txt file? I am getting an error libname clean does not exist. on New SAS User. 02-10-2019 12:02 PM
- Posted Can someone help me import a .txt file? I am getting an error libname clean does not exist. on New SAS User. 02-10-2019 11:35 AM
- Posted Re: Hello everyone! I am looking for the dataset boston in the sasuser. I am using sas university ed on SAS Programming. 10-02-2018 04:50 PM
- Posted Hello everyone! I am looking for the dataset boston in the sasuser. I am using sas university editio on SAS Programming. 10-02-2018 04:04 PM
- Posted Re: Hello everyone! Where can I find the dataset for Statistics I: Introduction to ANOVA, Regression on New SAS User. 10-01-2018 06:36 PM
- Posted Re: Hello everyone! Where can I find the dataset for Statistics I: Introduction to ANOVA, Regression on New SAS User. 10-01-2018 06:27 PM
- Posted Re: Hello everyone! Where can I find the dataset for Statistics I: Introduction to ANOVA, Regression on New SAS User. 10-01-2018 05:47 PM
- Posted Hello everyone! Where can I find the dataset for Statistics I: Introduction to ANOVA, Regression, an on New SAS User. 10-01-2018 02:34 PM
- Posted Re: Can someone explain this code to me? on SAS Programming. 12-25-2015 12:27 PM
- Liked Re: Can someone explain this code to me? for mohamed_zaki. 12-25-2015 12:27 PM
- Posted Re: Can someone explain this code to me? on SAS Programming. 12-25-2015 12:18 PM
- Posted Re: Can someone explain this code to me? on SAS Programming. 12-25-2015 12:09 PM
- Liked Re: Can someone explain this code to me? for mohamed_zaki. 12-24-2015 01:28 PM
- Liked Re: Are there practice problems that are provided to use with SAS Base Prep Guide sample data sets? for mohamed_zaki. 12-24-2015 09:49 AM
- Posted Can someone explain this code to me? on SAS Programming. 12-24-2015 09:35 AM
- Posted Are there practice problems that are provided to use with SAS Base Prep Guide sample data sets? on SAS Programming. 12-22-2015 03:06 AM
- Posted Re: How to get fast, helpful answers on Getting Started. 12-21-2015 07:54 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1
02-10-2019
12:02 PM
Hi, The log says library clean does not exist. I am using SAS University Edition. Thanks
... View more
02-10-2019
11:35 AM
libname clean "C:\Users\taran\Documents\SaSUniversityEdition\myfolders "; data clean.patients; infile " C:\Users\taran\Documents\SaSUniversityEdition\myfolders\patients.txt " truncover /* take care of problems with short records */; input @1 Patno $3. @4 Gender $1. @5 Visit mmddyy10. @15 Hr 3. @18 SBP 3. @21 DBP 3. @24 Dx $3. @27 AE $1.; LABEL Patno = "Patient Number" Gender = "Gender" Visit = "Visit Date" HR = "Heart Rate" SBP = "Systolic Blood Pressure" DBP = "Diastolic Blood Pressure" Dx = "Diagnosis Code" AE = "Adverse Event?"; format visit mmddyy10.; run;
... View more
10-02-2018
04:50 PM
I just want the dataset boston from sasuser of SAS 9.4.
... View more
10-02-2018
04:04 PM
I am looking for the dataset boston in sasuser. Can someone help me find it on the web?
... View more
10-01-2018
06:36 PM
I understand but is there a place where I can download the dataset in the book and work with them. There are exercise in the book that require the use of dataset such as b_boston.sas7bdat.
... View more
10-01-2018
06:27 PM
check this link : https://www.amazon.com/Statistics-Introduction-Regression-Logistic-Course/dp/1590479068/ref=sr_1_4?ie=UTF8&qid=1538432823&sr=8-4&keywords=sas+anova
... View more
10-01-2018
05:47 PM
There are datasets in the book Statistics I: Introduction to ANOVA, Regression, and Logistic Regression that I want to practice with. The book doesn't give any info on where to get the datasets.
... View more
10-01-2018
02:34 PM
Hello everyone! Where can I find the dataset for Statistics I: Introduction to ANOVA, Regression, and Logistic Regression?
... View more
12-25-2015
12:18 PM
ok, but what does it do to the put statement? I know that put is the same as input but for writing data to an external file. Usually we have several variable for the number of column in the put statement but here we have "text" only.
... View more
12-24-2015
09:35 AM
The objective here is to output a raw data file. I know that Put and File are used to write raw data file. I am not sure here there is INFILE which is used to read data, cards, missover and text and lrecl? data _null_; infile cards missover length=l; length text $ 50; input text $varying50. l; file aprdata pad lrecl=80; put text; datalines; Akron 04/05/99 04/09/99 175.00 298.45 Brown 04/12/99 05/01/99 125.00 326.78 Carnes 04/27/99 04/29/99 125.00 174.24 Denison 04/11/99 04/12/99 175.00 87.41 Fields 04/15/99 04/22/99 175.00 378.96 Jamison 04/16/99 04/23/99 125.00 346.28 ;
... View more
12-21-2015
07:54 PM
How do I use the sample data sets for SAS base programmer? I dont see any assignement that work with data. I am just wondering if the data are just provided like that?
... View more