01-04-2018
oriti
Fluorite | Level 6
Member since
05-22-2013
- 39 Posts
- 7 Likes Given
- 0 Solutions
- 1 Likes Received
-
Latest posts by oriti
Subject Views Posted 1335 12-20-2016 05:43 AM 1362 12-14-2016 05:06 AM 2341 09-26-2014 09:49 AM 2408 09-26-2014 09:27 AM 8409 09-18-2014 11:31 AM 8202 09-18-2014 10:56 AM 8409 09-18-2014 10:50 AM 8700 09-18-2014 08:04 AM 1373 07-14-2014 08:01 AM 1595 05-07-2014 05:40 AM -
Activity Feed for oriti
- Got a Like for Re: Matrix is singular. 01-03-2018 12:49 PM
- Liked Re: Interpolate time series data between variables and new variables for ballardw. 12-20-2016 05:44 AM
- Posted Re: Interpolate time series data between variables and new variables on SAS Programming. 12-20-2016 05:43 AM
- Liked Re: Interpolate time series data between variables and new variables for frajuc. 12-20-2016 05:43 AM
- Posted Interpolate time series data between variables and new variables on SAS Programming. 12-14-2016 05:06 AM
- Posted Re: SAS/IML and SAS/STAT on SAS/IML Software and Matrix Computations. 09-26-2014 09:49 AM
- Posted SAS/IML and SAS/STAT on SAS/IML Software and Matrix Computations. 09-26-2014 09:27 AM
- Posted Re: Eigenvalues on SAS/IML Software and Matrix Computations. 09-18-2014 11:31 AM
- Posted Re: Eigenvalues on SAS/IML Software and Matrix Computations. 09-18-2014 10:56 AM
- Posted Re: Eigenvalues on SAS/IML Software and Matrix Computations. 09-18-2014 10:50 AM
- Posted Eigenvalues on SAS/IML Software and Matrix Computations. 09-18-2014 08:04 AM
- Posted Using simulation to compute p-values on SAS/IML Software and Matrix Computations. 07-14-2014 08:01 AM
- Liked Re: Calling functions/code in the S-plus language? for jakarman. 05-07-2014 05:42 AM
- Liked Re: Calling functions/code in the S-plus language? for Reeza. 05-07-2014 05:41 AM
- Posted Re: Calling functions/code in the S-plus language? on SAS/IML Software and Matrix Computations. 05-07-2014 05:40 AM
- Posted Re: Calling functions/code in the S-plus language? on SAS/IML Software and Matrix Computations. 05-05-2014 10:06 AM
- Posted Calling functions/code in the S-plus language? on SAS/IML Software and Matrix Computations. 05-05-2014 04:42 AM
- Posted Re: Solving OLS regression after cleaning empty columns on SAS/IML Software and Matrix Computations. 04-25-2014 08:37 AM
- Posted Re: Solving OLS regression after cleaning empty columns on SAS/IML Software and Matrix Computations. 04-24-2014 02:11 PM
- Posted Re: Solving OLS regression after cleaning empty columns on SAS/IML Software and Matrix Computations. 04-24-2014 11:21 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 4 1 -
My Liked Posts
Subject Likes Posted 1 02-04-2014 02:37 PM
12-20-2016
05:43 AM
Thank you!!
you gave me few ideas and I used the expand procedure to fill missing values.
In addition I added a spline function (msplint) to add more variables that I needed.
... View more
09-26-2014
10:20 AM
Being possible and being a good idea are two different things. Yes, it is possible. However, I agree with that evaluating (scoring) the model in SAS/IML will probably be simpler, since evaluating a model is just matrix multiplication. If you decide to go the SAS/STAT route, look into PROC SCORE. You would have to write the coefficients to a data set in the form that PROC SCORE could consume, as described here: SAS/STAT(R) 13.1 User's Guide
... View more
09-18-2014
01:55 PM
Thanks so much Dr. Rick. I was just mixing observations with cov matrix.
... View more
07-14-2014
08:44 AM
It sounds like you want a two-sided test. For a discussion, see How to compute p-values for a bootstrap distribution - The DO Loop . For a two-sided example (and code), see p. 14 of this paper: http://support.sas.com/resources/papers/proceedings10/329-2010.pdf
... View more
05-07-2014
05:40 AM
Thank you all! Well, the paper is from 2005 and the code (S-plus) just has been used in a paper from 2014. but, It's not a common procedure... Great community, thanks again, Orit
... View more
04-25-2014
08:37 AM
Brilliant !! Thanks so much, Orit
... View more
04-02-2014
09:57 AM
Please check this works for you: x=(C^=0); Cnew=C[,loc(x[+,]^=0)];
... View more
02-04-2014
02:37 PM
1 Like
Really interesting! Thank you Rick!
... View more
01-21-2014
09:17 AM
You didn't round, so the probability of a singular matrix is much lower. If you are good at math and numerical linear algebra, here is an article about generating random matrices and the probability of generating a singular matrix: What is the chance that a random matrix is singular? - The DO Loop
... View more
12-19-2013
06:08 AM
1 Like
I'd allocate a row vector to hold the results and use a DO loop over the columns.
... View more