Displaying 20 results from an estimated 2000 matches similar to: "How to optimize a matrix"
2009 Jan 27
2
Need help on running Heckman Correction Estimation using R
Team,
I am trying to resolve the self-selection bias of a sample in an experiment
and would like to run the Heckman Correction Estimation using R. Can
someone help me with the R-Code... I tried searching for the discussion, but
not successful. Thanks in advance,
Best,
Kishore/..
http://kaykayatisb.blogspot.com
[[alternative HTML version deleted]]
2017 Jun 01
2
Problem of a function I wrote
Hello everyone,
I have been working on a code which simply repeatedly appends a number
into a vector and write a file. However, it could not be properly
implemented when I use it. It works when I run it line by line. I
wonder what is the problem and I appreciate anyone who is willing to
help.
The function and the example code is attached. Any advice is appreciated!
Best,
Yen
2017 Jun 01
1
Problem of a function I wrote
Hello everyone,
I know where is wrong. I forget to specify the parameters in my
function. Thank you for anyone who was trying to help me!
Best,
Yen
?? b88207001 at ntu.edu.tw:
> Hello everyone,
>
> It seems that I was not successfully attached the code. Here is the
> code. I appreciate any help!
>
> Best,
> Yen
>
> ?? b88207001 at ntu.edu.tw:
>
>> Hello
2017 Aug 16
4
{nlme} Question about modeling Level two heteroscedasticity in HLM
Hello dear uesRs,
I am working on modeling both level one and level two
heteroscedasticity in HLM. In my model, both error variance and
variance of random intercept / random slope are affected by some level
two variables.
I found that nlme is able to model heteroscedasticity. I learned how
to use it for level one heteroscedasticity but don't know how to use
it to model the level
2009 Mar 10
2
(no subject)
Dear R users,
I have a table with the following form
STATION X Y
1 -70 30
1 -70 30
1 -70 30
2 -72 29
2 -72 29
2 -72 29
2 -72 29
How want to extract unique value for those columns ... I am sure it is very simple, but I can not achieve to find the correct way !
I want to obtain something like
STATION X Y
1
2009 Mar 11
2
t-test, survey data
*How can I do a t-test with survey data?*
Thanks.
Marie
--
---------------------------------------------------------------------
Le Bureau f?d?ral du Plan f?te ses 50 ans en 2009.
Het Federaal Planbureau viert zijn 50-ste verjaardag in 2009.
The Federal Planning Bureau celebrates its 50-th anniversary in 2009.
---------------------------------------------------------------------
2009 Mar 15
1
BOOTSTRAP_CROSS VALIDATION
I need a script that works for Bootstrap validation.
Could someone explain me when should I use the Bootstrap technical or
Jackknife?
Thanks
--
View this message in context: http://www.nabble.com/BOOTSTRAP_CROSS-VALIDATION-tp22529500p22529500.html
Sent from the R help mailing list archive at Nabble.com.
2017 Jun 01
0
Problem of a function I wrote
Hello everyone,
It seems that I was not successfully attached the code. Here is the
code. I appreciate any help!
Best,
Yen
?? b88207001 at ntu.edu.tw:
> Hello everyone,
>
> I have been working on a code which simply repeatedly appends a
> number into a vector and write a file. However, it could not be
> properly implemented when I use it. It works when I run it line by
2009 Feb 25
4
Have a function like the "_n_" in R ? (Automatic count function )
Have the counter function in R ?
if we use the software SAS
/*** SAS Code **************************/
data tmp(drop= i);
retain seed x 0;
do i = 1 to 5;
call ranuni(seed,x);
output;
end;
run;
data new;
counter=_n_; ***** this keyword _n_ ****;
set tmp;
run;
/*
_n_ (Automatic variables)
are created automatically by the DATA step or by DATA step statements.
*/
/*** Output
2009 Mar 19
2
Randomly splitting a data frame in half
I have a data frame in long format and I would like to randomly divide
this data frame in half. The data frame consists of 39622 rows and I
initially tried ...
randomsample1 <- data[sample(nrow(data),19811), ]
Where allows me to randomly select half of the rows and assign them to
randomsample1 but then I couldn't figure out how to select those rows
that were not selected and assign
2008 Oct 14
2
Re : (a) Credit Scoring models and (b) aceesing earlier emails
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20081014/df8fd0b2/attachment.pl>
2010 Jun 15
3
Problem about zero
Hello, everyone,
There's a problem about zero in R and I really need your help.
I have a vector shown as x=c(0.1819711,0.4811463,0.1935151,0.1433675),
The sum of this vector is shown as 1 in R, but when I type 1-sum(x), the
value is not zero, but -2.220446e-16.
I can accept that this value is quite small and could be seen as zero, but
there would be a problem when it's not really
2009 Mar 19
8
function question
Dear R Gurus:
I read somewhere that functions are considered vectors.
Is this true, please?
thanks
Edna Bell
2017 Aug 16
0
{nlme} Question about modeling Level two heteroscedasticity in HLM
If you don't get a response it is because you did not read the Posting Guide which indicates that the R-sig-ME mailing list is where this question would have been on-topic.
--
Sent from my phone. Please excuse my brevity.
On August 16, 2017 6:17:03 AM PDT, b88207001 at ntu.edu.tw wrote:
>Hello dear uesRs,
>
>I am working on modeling both level one and level two
2017 Aug 16
0
{nlme} Question about modeling Level two heteroscedasticity in HLM
A better place for this post would be on R's mixed models list:
r-sig-mixed-models .
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Wed, Aug 16, 2017 at 6:17 AM, <b88207001 at ntu.edu.tw> wrote:
> Hello dear
2010 Feb 28
2
Calling SAS from R
I'm new to post in R-help and my native language is not English.
I apologize if my sentence is not fluent to read.
I am doing a simulation study and I need to execute SAS and read a SAS code
in R.
I try the following code but it doesn't work.
system('"c:\\program files\\SAS\\SAS 9.1\\sas.exe" "c:\\syntax.sas"')
can anyone give me some help with this?
2010 Nov 05
1
Detect the Warning Message
Dear all,
I've written a function and repeated it for 5000 times with loops with
different value, and the messages returned are the output I set and 15
warnings.
I would like to trace the warnings by stopping the loop when warning came
out.
Does anyone know how to make it?
Thanks a lot for your help.
Yen
[[alternative HTML version deleted]]
2007 Aug 02
2
Re : beamer error with R
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
Url : https://stat.ethz.ch/pipermail/r-help/attachments/20070802/04c0f92e/attachment.pl
2006 May 15
1
Fitting usual distributions.
Hello,
I am currently writing a program whose goal is to fit usual
distributions (estimating parameters and confidence intervals for a
given distribution).
After some research in R, R-help and google I have found most of what I
was looking for (especially thanks to MASS - fitdistr() ), however there
are still a few distributions I could not find R code for: Multinormal,
Truncated normal,
2009 Mar 06
3
PCA and categorical data
Hi all,
I' m trying to figure out if it is appropriate to do a PCA having only categorical data (not ordinal). I have only find the following quote:
One method to find such relationships is to select appropriate variables and
to view the data using a method like Principle Components Analysis (PCA) [4].
This approach gives us a clear picture of the data using KL-plot of the PCA.
However, the