| Thread | Last Post | Replies |
|
| Re: ERROR: Connect: External table is not in the expected format. | 28 Feb 2010 23:53 GMT | - |
Lee, There are a number of SAS technical notes on this. If you're not on 9.2 phase 2, you may have to intall that to solve the problem (other than, of course, simply opening the file in Excel and saving it in an
|
| 'Sasers' set to stun | 28 Feb 2010 21:50 GMT | - |
http://www.nature.com/news/2010/100226/full/news.2010.92.html
|
| BoxPlot | 28 Feb 2010 19:09 GMT | - |
I want to test varaible y in regression given the independat variables x,y,z,w,l. need to produce a boxplot ( scatter plot ) for all at once . Kindly help witrh SAS Code.
|
| ERROR: Connect: External table is not in the expected format. (when using a .xlsx file) | 28 Feb 2010 18:29 GMT | - |
I get the following error when I use a .xlsx file but if I use a .xls it works fine. Does the server need installed a new version of office? 9 proc import 10 datafile = 'test.xlsx'
|
| SAS Code | 28 Feb 2010 17:23 GMT | 1 |
I used the code - DATA home; INFILE 'c:\Cwa\Home.txt'; INPUT Owner $ 1-7 Description $ 9-33 Cost;
|
| Format in SAS | 28 Feb 2010 03:08 GMT | 3 |
I'm using the code :- data period1; infile 'c:\Cwa\period1_sales_data.dat.'; Input TransactionID $1-8
|
| Norton Internet Security 2010 v17.5.0.127 Final | 27 Feb 2010 22:49 GMT | - |
Norton Internet Security 2010 v17.5.0.127 Final download all antivirus programs 2010 free now Avira AntiVir PersonalEdition 8.2.0.334 http://alagmysoft.blogspot.com/2010/02/avira-antivir-personaledition-820334.html
|
| Re: creating a filename with concatenated date & time values | 27 Feb 2010 21:19 GMT | 10 |
CATS? CATX? ||? CAT? Just use whichever method of concatenation you prefer, plus PUT statements to make sure they are properly formatted. -Joe
|
| Testing Trends when Equal Variances are not Assumed | 27 Feb 2010 16:43 GMT | 7 |
proc glm contrasts give me tests that assume equal variances. if i enter the same coefficients into spss, i get two sets of tests (equal variances assumed and not). can i get these tests from glm? thanks
|
| Char() vs substr() (was Re: How to - Hex IP address to dotted | 27 Feb 2010 15:32 GMT | 5 |
Can anyone comments on why SAS introduced the new function char()? What is the advantage of char(a,1)? Isn't it the same as substr(a,1,1)? Thanks
|
| Re: Taking the log of variable with Positive, | 27 Feb 2010 13:44 GMT | - |
Doyle Kalumbi <djrk0003@COMCAST.NET> wrote
>Users: |
| Data step Do loop to change the value of Macro Variable | 27 Feb 2010 07:17 GMT | 15 |
%macro a; data a; %do i=1 %to 10; X&i=&i;
|
| Robust standard errors in Zero inflated Poisson and Zero inflated | 27 Feb 2010 02:37 GMT | 1 |
I have used Proc Genmod and Repeated Subject statement to obtain robust standard errors in Poisson and negative binomial regression. Could anyone please tell me something about the STATEMENT AND possible SYNTAX that can be used to obtain robust standard errors in Zero inflated ...
|
| Ouput only select regression coefficients with "proc syslin"? | 26 Feb 2010 22:46 GMT | 1 |
A simple question that appears to have no simple answer. I am running a large number of 2sls regressions with proc syslin. Each regression contains a number of useful but meaningless dummy variables. I would like SAS to only print the parameter estimates for one or two key ...
|
| Re: Basic Bootstrap Macro | 26 Feb 2010 21:54 GMT | 8 |
You changed 2 places in the original code, which caused trouble: set new POINT = choice NOBS = 10; The 10 has to be n, a variable used later. PROC REG DATA = analysis NOPRINT outest= outests;
|