Description:
The SAS statistics package.
|
|
|
Reading CSV into SAS, but delimiter comma is part of data
|
| |
Hi all - I need to read an external CSV file which is comma delimited into SAS. However, there is one field contains comma without quotation mark. How can I read such data into SAS? Example: ID, Location, Income 1,New York, 30000 2,New York, NY, 40000 3,Austin, 3000 4,Lansin, 38999 What I need is the SAS dataset contains 3 variables (ID, Location,... more »
|
|
PROC GLM: Contrast/Estimate
|
| |
Hi, =A0 I have following two factors in my GLM. Faculty: Arts Engineering Medical Science Gender: Male Female =A0 I want to test: Ho: Difference between male and female in Arts =3D Differene between male a= nd female in Science =A0 I guess I need=A0 to use Contrast or Estimate statement in SAS. Please let =... more »
|
|
examples?
|
| |
Hi all. Does anyone know if there are any examples on how to use the weight statement in proc mixed somewhere? It can't find it apart from the short description from the online SAS help. I prefer examples. Thanks heaps.
|
|
proc report summing up observations
|
| |
when I run proc report on a dataset containing only numeric variables, it just gives me the sum of all the obsevations as one record in the output. however if I have a character valriable in the dataset, then it lists out the exact observations. eg. data test; input num 1-3 ; datalines; 23 10 . 30 ;... more »
|
|
Normal residual in GLIMMIX?
|
| |
I am using the following code to analyze my count data. "Nxtot" is the number of roots. When I use the following code, some of the variables and their interactions are significant but residuals are not normal. If I use "Dist=lognormal link=identity" in the following code, none of the variables and their interactions are significant but the residuals are normal. AIC... more »
|
|
%Squeeze Change 9.1.3 to 9.2
|
| |
I found this macro a number of years ago, and use it all the time to reduce file sizes. I'm not sure if this is where I got it, but you can see it here: [link] I only started using SAS 9.2 in the last few months. When I run the macro in 9.2, I get an error message I never got before:... more »
|
|
Sharing Keyboard Abbreviations
|
| |
Hi, I'm planning to share some of my keyboard abbreviations among different users, the easiest way i found to do that, is making an export to a .kmf file which is done in the tool/keyboard macro/macro menu, and then other users could import them. The problem is that i'm planning to update the abbreviations... more »
|
|
Base sas certification question (Found somewhere )
|
| |
Base sas certification question Flat file structure is as below 1----5----10 dan 23 45 bob 44 50 sue 30 80 mam 40 50 The following code is submitted. data temp; infile =91file specification=92; input x $ 1-3; if x=3D'sue' then input age 5-6; else input height 8-9; run; what would be the value of variable AGE in the dataset TEMP when variable X... more »
|
|
independent regression for false dicovary rate
|
| |
Dear SAS-L users;=0A=A0=0AI have about 36000 independent variables (x1-x360= 00) and one dependent variable (y). I need to run 36000 independent single = regression models to use their p values in MULTTEST. So;=0A=A0=0Aa) Is ther= e any pratical way to run 36000 independent single regression at the same t=... more »
|
|
|