08-25-2020
Jems
Obsidian | Level 7
Member since
02-21-2015
- 26 Posts
- 2 Likes Given
- 0 Solutions
- 2 Likes Received
-
Latest posts by Jems
Subject Views Posted 803 08-21-2020 10:50 PM 5394 10-07-2018 10:09 AM 5420 10-07-2018 02:00 AM 5459 10-06-2018 11:35 AM 5493 10-06-2018 05:49 AM 4187 02-21-2017 07:45 AM 4192 02-21-2017 06:45 AM 4201 02-21-2017 06:23 AM 51980 07-29-2016 08:07 PM 1072 07-06-2016 05:31 AM -
Activity Feed for Jems
- Got a Like for Decimal places in proc means. 08-12-2024 11:02 AM
- Posted Exporting R outputs to SAS dataset on SAS/IML Software and Matrix Computations. 08-21-2020 10:50 PM
- Posted Re: WARNING: Out of memory. on SAS Programming. 10-07-2018 10:09 AM
- Posted Re: WARNING: Out of memory. on SAS Programming. 10-07-2018 02:00 AM
- Posted Re: WARNING: Out of memory. on SAS Programming. 10-06-2018 11:35 AM
- Posted WARNING: Out of memory. on SAS Programming. 10-06-2018 05:49 AM
- Posted Re: Yates correction on SAS Procedures. 02-21-2017 07:45 AM
- Posted Re: Yates correction on SAS Procedures. 02-21-2017 06:45 AM
- Posted Yates correction on SAS Procedures. 02-21-2017 06:23 AM
- Liked Re: Decimal places in proc means for Cynthia_sas. 07-29-2016 11:04 PM
- Posted Decimal places in proc means on SAS Programming. 07-29-2016 08:07 PM
- Liked Re: "NOTE 49-169: The meaning of an identifier after a quoted string....." error for dbianco. 07-29-2016 07:58 PM
- Posted Sas universal viewer 4.1 on SAS Data Management. 07-06-2016 05:31 AM
- Posted Re: "NOTE 49-169: The meaning of an identifier after a quoted string....." error on SAS Programming. 06-27-2016 10:12 AM
- Posted Re: Tables and Listing on ODS and Base Reporting. 06-27-2016 10:05 AM
- Posted Tables and Listing on ODS and Base Reporting. 06-26-2016 08:18 PM
- Tagged SAS 9.1 supported distributions on SAS Programming. 10-02-2015 08:04 AM
- Posted SAS 9.1 supported distributions on SAS Programming. 10-02-2015 08:03 AM
- Got a Like for Re: Sensitivity,Specificity and Youden index. 07-28-2015 09:08 AM
- Posted Re: Sensitivity,Specificity and Youden index on SAS Procedures. 07-28-2015 08:35 AM
-
Posts I Liked
-
My Liked Posts
Subject Likes Posted 1 07-29-2016 08:07 PM 1 07-28-2015 08:35 AM
08-21-2020
10:50 PM
I was able to run R code via PROC IML in SAS,so is there any way to export the generated outputs to SAS datasets since the R outputs don't follow data frame structure.
Thanks in advance
... View more
10-07-2018
10:09 AM
Absolutely true,this is genetic data involving mutations and we are trying to find all the possible combinations.
... View more
10-07-2018
02:00 AM
Thanks KurtBremser ..Now warning and error gone ..run time seems too long still running.
Any suggestions to reduce the running time ?
... View more
10-06-2018
11:35 AM
log
-----------------------------------------------------------------------------------------------------
NOTE: The data set WORK.MUTNC_6 has 1623160 observations and 83 variables.
NOTE: Compressing data set WORK.MUTNC_6 decreased size by 99.32 percent.
Compressed is 11062 pages; un-compressed would require 1623160 pages.
NOTE: DATA statement used (Total process time):
real time 49.28 seconds
cpu time 48.95 seconds
WARNING: Out of memory.
ERROR: File WORK.COMB.DATA is damaged. I/O processing did not complete.
ERROR: File WORK.MUTNC_6.DATA is damaged. I/O processing did not complete.
ERROR: File WORK.'SASTMP-000000961'n.UTILITY is damaged. I/O processing did not complete.
NOTE: PROCEDURE APPEND used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
NOTE: The file WORK.MUTNC_6.DATA has been closed by the SASFILE statement.
6
102 %ty(ua=7);
NOTE: The data set WORK.MUTNC_7 has 6724520 observations and 84 variables.
NOTE: Compressing data set WORK.MUTNC_7 decreased size by 99.30 percent.
Compressed is 46924 pages; un-compressed would require 6724520 pages.
NOTE: DATA statement used (Total process time):
real time 3:29.58
cpu time 3:29.63
WARNING: Out of memory.
ERROR: File WORK.COMB.DATA is damaged. I/O processing did not complete.
ERROR: File WORK.MUTNC_7.DATA is damaged. I/O processing did not complete.
ERROR: File WORK.'SASTMP-000000964'n.UTILITY is damaged. I/O processing did not complete.
NOTE: PROCEDURE APPEND used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
code
----------------------------------------------------------------------------------------------------%macro ty(ua=);
%let u=&ua.;
data mutnc_&ua;
*array x[5] $3 ('ant' 'bee' 'cat' 'dog' 'ewe');
array x[&mu_n] $500 (&mutatn.);
array c[&mu_n] $500;
* do u=1 to 5;
array i[&u];
n=dim(x);
k=dim(i);
i[1]=0;
ncomb=comb(n,k); /* The one extra call goes back */
do j=1 to ncomb; /* to the first combination. */
call allcombi(n, k, of i[*], add, remove);
do h=1 to k;
c[h]=x[i[h]];
end;
*put @4 j= @10 'i= ' i[*] +3 'c= ' c[*] +3 add= remove=;
output;
end;
run;
sasfile work.mutnc_&ua. open;
proc append base=comb data=mutnc_&ua force;
run;
sasfile work.mutnc_&ua. close;
*%put &u.;
%mend;
%ty(ua=1);
%ty(ua=2);
%ty(ua=3);
%ty(ua=4);
%ty(ua=5);
%ty(ua=6);
%ty(ua=7);
%ty(ua=8);
%ty(ua=9);
%ty(ua=10);
%ty(ua=11);
%ty(ua=12);
endsas;
... View more
10-06-2018
05:49 AM
Sas is giving
WARNING: Out of memory.
ERROR: File WORK.COMB.DATA is damaged. I/O processing did not complete.
ERROR: File WORK.MUTNC_6.DATA is damaged. I/O processing did not complete.
ERROR: File WORK.'SASTMP-000000961'n.UTILITY is damaged. I/O processing did not complete.
... View more
02-21-2017
07:45 AM
Sorry if subject line caused some sort of confusiion.My primary doubt was whether to take (Yates) Continuity Adj. Chi-Square or normal Chi-Square.
... View more
02-21-2017
06:45 AM
Reeza thanks for the response i did Fisher's exact test too,so what will be the probability value in this case
The FREQ Procedure Statistics for Table of TRTGRP by ERR_ORD Fisher's Exact Test ---------------------------------- Cell (1,1) Frequency (F) 8 Left-sided Pr <= F 0.8533 Right-sided Pr >= F 0.3766 Table Probability (P) 0.2300 Two-sided Pr <= P 0.7170
... View more
02-21-2017
06:23 AM
I tried to do chi square test for the following observed frequencies
------------------------------ ------------------------------ ------------------------------ --- A B A 8 4 B 12 10
SAS gave the following output which value and probability should be taken in this case
The FREQ Procedure Statistics for Table of TRTGRP by ERR_ORD Statistic DF Value Prob ------------------------------------------------------ Chi-Square 1 0.4710 0.4925 Likelihood Ratio Chi-Square 1 0.4769 0.4898 Continuity Adj. Chi-Square 1 0.1035 0.7477 Mantel-Haenszel Chi-Square 1 0.4571 0.4990 Phi Coefficient 0.1177 Contingency Coefficient 0.1169 Cramer's V 0.1177 WARNING: 25% of the cells have expected counts less than 5. Chi-Square may not be a valid test.
... View more
07-29-2016
08:07 PM
1 Like
When i am using proc means for a variable the one observation is giving 3 and other 2 decimal places in output, how to keep 3 decimal places for all observations.
... View more
06-27-2016
10:12 AM
Whenever i am getting this note i close the sas session and the reopen.Then there will be no more notes and truncation!But i am really interested in knowing the root cause,is it a bug.
... View more
06-26-2016
08:18 PM
Is there any standard methodology for creating tables and listings associated with reporting of clinical trials.
... View more
10-02-2015
08:03 AM
Is it possible to apply univariate procedure on Rayleigh distribution using SAS 9.1 version.
... View more
07-28-2015
08:35 AM
1 Like
Yeh i will make use of that possibility.Thank you very much for the support offered.
... View more