08-24-2016
kewong
Obsidian | Level 7
Member since
11-20-2012
- 13 Posts
- 0 Likes Given
- 1 Solutions
- 1 Likes Received
-
Latest posts by kewong
Subject Views Posted 1761 08-17-2016 10:04 AM 2119 05-18-2016 10:16 AM 2141 05-16-2016 06:01 PM 1288 02-05-2016 09:54 AM 5618 10-16-2014 11:16 AM 1984 12-19-2013 11:27 AM 8933 04-12-2013 01:44 PM 3299 11-27-2012 12:56 PM 3299 11-21-2012 02:44 PM 3299 11-21-2012 01:52 PM -
Activity Feed for kewong
- Got a Like for Re: intersecting one dataset based on second dataset in sas. 08-17-2016 10:21 AM
- Posted Re: intersecting one dataset based on second dataset in sas on SAS Programming. 08-17-2016 10:04 AM
- Posted Re: steps to multiple imputation: proc mi on Statistical Procedures. 05-18-2016 10:16 AM
- Posted steps to multiple imputation: proc mi on Statistical Procedures. 05-16-2016 06:01 PM
- Posted Importing data from sharepoint on SAS Programming. 02-05-2016 09:54 AM
- Posted Re: Converting many rows of data into one on SAS Procedures. 10-16-2014 11:16 AM
- Posted Statistical significant change in median age over time on Statistical Procedures. 12-19-2013 11:27 AM
- Posted Statistical significance of time trends on Statistical Procedures. 04-12-2013 01:44 PM
- Posted Re: Proc Import on SAS Procedures. 11-27-2012 12:56 PM
- Posted Re: Proc Import on SAS Procedures. 11-21-2012 02:44 PM
- Posted Re: Proc Import on SAS Procedures. 11-21-2012 01:52 PM
- Posted Re: Proc Import on SAS Procedures. 11-21-2012 01:39 PM
- Posted Proc Import on SAS Procedures. 11-20-2012 06:57 PM
-
My Liked Posts
Subject Likes Posted 1 08-17-2016 10:04 AM
08-17-2016
10:04 AM
1 Like
Hi nikhil,
Try the following additions to your code:
data merged_data;
merge primary_data (in=a) selection (in=b);
by Id; if b;
run;
Hope this works!
Kenny
... View more
05-18-2016
10:16 AM
Thanks PG Stats!
I guess what I am struggle is this: "The key idea is that M repetitions yield M completed data sets, each of which can be analyzed by standard complete-data methods just as if it were the real data set. The M complete-data analyses based on the M repeated imputations are then combined to create one repeated-imputation inference."
So in this case, do I run proc reg 5 times for each imputed dataset?
and proc mianalyze creates combines to create one inference?
Thanks in advance for the clarification
... View more
05-16-2016
06:01 PM
Hi SAS experts,
I have a question on multiple imputation. Variables with missing data are: stage_cancer(ordinal) and birthcountry (nominal).
After I impute this data with the following code - what's next?
proc mi data = data nimpute=5 seed=9455 out=outmi; class stage_cancer birthcountry; fcs discrim(stage_cancer = sexn age birthcountry/classeffects=include); fcs discrim(birthcountry = sexn age stage_cancer/classeffects=include); var sexn age stage_cancer birthcountry; run;
I am not sure how to handle the 5 new imputed datasets for the same subject, if lets say I want to run a regression - do i use the outmi dataset?
proc reg data = data;
model outcome = sexn age stage_cancer birthcountry;
run;
Any advice would be much appreciated! Thanks a lot.
... View more
02-05-2016
09:54 AM
Hi SAS community,
I wanted to ask if anyone has experience with importing data from sharepoint? Currently, I have to duplicate files onto a personal drive before importing/exporting and its really inefficient.
Thanks in advance for the help!
... View more
10-16-2014
11:16 AM
This SAS macro has helped me achieved what you want to do. One caveat is to have a unique identifier for each participant and transpose by that variable. SAS macro %MultiTranspose: Transposing multiple variables in a SAS data set within a single macro call
... View more
12-19-2013
11:27 AM
Hi everyone, I am hoping to get your expertise on showing whether the change in median age over time is statistically different. For example, here is what my data looks like: Year 2000 2001 2002 2003 2004 2005 2006 Median Age 20 22 19 26 23 24 29 I would appreciate any help! What statistical test should I use and please advise on the corresponding SAS code. Many thanks!
... View more
04-12-2013
01:44 PM
Hi SAS community, I was wondering if you guys can help me out with the correct approach in determining whether or not a time trend is statistically significant over time. Lets say in year 2000, we had 100 cases with over population of 50,000 = 200/100,000 persons/year. in year 2005, we had 75 cases with populatino of 60,000 = 125/100,000 persons/year. in year 2010, we had 50 cases over a population of 75,000 = 66.67/100,000 persons/year. How do I get the p value and determine whether it's statistically different? Thanks in advance for all your help!
... View more
11-27-2012
12:56 PM
Below is the response I got from SAS Tech Support: This may be caused by a registry key not being present or not registered. Here is how you deal with this normally. Usage Note 11012: Error: Trying to establish connection and ISAM errors when importing and exporting PC File Formats When you attempt to import or export PC File Formats such as Microsoft Excel or Microsoft Access files, the following error messages might appear: Error trying to establish connection. Could not find installable ISAM. The error message can appear even when the latest Microsoft Data Access Components (MDAC) have been installed. They appear because the registry entries listed in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines are not pointing to the correct locations. The most common problem is with the Msexcl40.dll where it is pointing to C:\Windows rather than C:\winnt or vice versa. Other dlls being pointed to incorrectly include msexch40.dll, msrd2x40.dll, msrd3x40.dll, msltus40.dll, mspbde40.dll, mstext40.dll, and msxbde40.dll. For more information, consult Microsoft Knowledge Base articles 283881 and 209805 at http://www.microsoft.com. This can also be caused by the MSEXCL40.DLL not being registered. You can check it as follows: 1.Make sure that Msexcl40.dll exists in the system or system32 folder. 2.Open regedit. Make sure that the correct path to Msexcl40.dll is located at: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel 3.If both conditions exist, re-register the DLL using regsrv32.exe: “regsrv32 c:\winnt\system32\Msexcl40.dll” (From Start>Run or command prompt. You may need to find the location of regsrv32 before running.) If 1 or 2 are false, you will need to install (or re-install) Office (or at the very least Excel).
... View more
11-21-2012
02:44 PM
I save the file I was using to XLS extension (Microsoft 1997-2003 version) - it did not change from xls to xlsx. I ran the codes using the file you attached: Proc import out = work.abc datafile="C:\Documents and Settings\kwong3\Desktop\teststuff.xls" dbms=excel replace; sheet="Sheet1"; run; AND libname xls excel 'C:\Documents and Settings\kwong3\Desktop\teststuff.xls'; Error still pops up. Thank you for the continued advice, Arthur. As frustrating as this is, I guess I can work around with saving my XLS to CSV files for now...
... View more
11-21-2012
01:52 PM
I have Microsoft Excel 2007 - I can't provide you with the actual excel file due to confidentiality. That being said, this error shows up with ANY excel file. Even as simple as: Name Score a 2 b 5 b 6
... View more
11-21-2012
01:39 PM
Thanks Arthur - appreciate the help! I tried re-saving the file and importing using the XLS engine - both options still gave the error mentioned above.
... View more
11-20-2012
06:57 PM
Hi everyone, I'm a new SAS user and running into a problem when trying to import an excel file. I'm using SAS 9.1 and import excel 1997-03 file. Below is my code and the error message I am receiving: Proc import out = work.abc datafile="P:\pathway\test.xls" dbms=excel replace; sheet="Sheet1"; run; ERROR: Connect: Could not find installable ISAM. ERROR: Error in the LIBNAME statement. Connection Failed. See log for details. Has anyone come across this before? Any potential solutions? I know I can save the file in a CSV format but I would rather import one XLS with 10 tabs, then 10 separate CSV files. Appreciate the help and thanks in advance!
... View more