I don't use R.app.
And as I wrote later, there are a number of .Rhistory so it depends
on where you start R/RStudio from.
el
On 2021-03-01 22:29 , David Carlson wrote:
> On the Mac there can be 2 files. The R Studio uses .Rhistory, but Rapp
> uses .Rapp.history.
>
> David L Carlson
>
> On Su
On the Mac there can be 2 files. The R Studio uses .Rhistory, but Rapp
uses .Rapp.history.
David L Carlson
On Sun, Feb 28, 2021 at 9:06 AM Dr Eberhard W Lisse wrote:
> On the Mac it is ~/.Rhistory
>
> el
>
> On 2021-02-28 15:39 , Mahmood Naderan-Tahan wrote:
> > Hi
> >
> > May I know where is
Oh
find ~ -name .Rhistory 2>/dev/null
shows 12 file :-)-O
vriendelijke groeten/sincères amitiés,
el
On 2021-02-28 17:17 , Mahmood Naderan-Tahan wrote:
> OK. It seems that it depends on where R is launched.
>
> In my case, I found .Rhistory file in ~/Documents.
>
>
> Regards,
> Mahm
OK. It seems that it depends on where R is launched.
In my case, I found .Rhistory file in ~/Documents.
Regards,
Mahmood
From: R-help on behalf of Dr Eberhard W Lisse
Sent: Sunday, February 28, 2021 4:06:26 PM
To: r-help@r-project.org
Subject: Re: [R
On the Mac it is ~/.Rhistory
el
On 2021-02-28 15:39 , Mahmood Naderan-Tahan wrote:
> Hi
>
> May I know where is the location of commands we used in R in the history?
>
>
> Regards,
> Mahmood--
Dr. Eberhard W. Lisse \ / Obstetrician & Gynaecologist
e...@lisse.na / *
I think it may depend on your operating system. In my case, Ubuntu 20.10,
it is a hidden file at /home level.
On Sun, 28 Feb 2021 at 08:40, Mahmood Naderan-Tahan <
mahmood.nade...@ugent.be> wrote:
> Hi
>
> May I know where is the location of commands we used in R in the history?
>
>
> Regards,
>
Hi
May I know where is the location of commands we used in R in the history?
Regards,
Mahmood
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-he
Hello,
There is
system.time {base}
CPU Time Used
Description
Return CPU (and other) times that expr used.
There are also packages microbenchmark or bench.
Hope this helps,
Rui Barradas
Às 15:44 de 20/11/19, Jeff Reichman escreveu:
R- Help
Is there a command or way to obtain the ti
Hi Jeff,
You might want to check out the microbenchmark() function in the
microbenchmark package.
install.packages("microbenchmark")
library(microbenchmark)
?microbenchmark
HTH,
Eric
On Wed, Nov 20, 2019 at 5:45 PM Jeff Reichman
wrote:
> R- Help
>
>
>
> Is there a command or way to obtain the
R- Help
Is there a command or way to obtain the time it took R to execute a command?
Sincerely
Jeff Reichman
(314) 457-1966
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more,
> Jeff Newmiller
> on Mon, 5 Nov 2018 18:47:00 -0800 writes:
> Well, you may or may not have ruled out the Putty settings
> (your hand waving is a bit hard for me to interpret), and
> there may still be host side terminal settings involved,
> or if you compiled R yours
Well, you may or may not have ruled out the Putty settings (your hand waving is
a bit hard for me to interpret), and there may still be host side terminal
settings involved, or if you compiled R yourself you may have setup something
wrong. However, in either case the R-sig-fedora mailing list wo
Hi Jeff - thanks. I forgot to add originally that I use putty as a
terminal for the old version of R I mentioned as well as the new, and also
I can see the same issue with the new version of R when run in xterm. I’ve
messed with some of the options putty offers and it doesnt change the new R
beha
I am pretty sure this is not an R issue (so it is off-topic here)... it sounds
like the kind of misconfiguration that was common back when there were dozens
of competing terminal manufacturers and the solution was to configure your
Linux TERM variable and/or terminfo database to match up with yo
Hi all -
I’m seeing a weird issue. I’m running R v3.3.2 on CentOS 7 Linux. The
behavior of the command prompt when entering very long commands on a single
line is strange compared to my use in older versions. Specifically, after
hitting enter, the prompt continues on the line immediately after the
Jim/Rui:
Strictly speaking, this is wrong. What you have described is MCAR --
missing completely at random -- not MAR. They are different! Nevertheless,
the OP seems to be similarly confused about this, so MCAR may in fact be
what what was wanted. Without further context, it is as clear as mud to
Hi Adam,
Looks like you have a matrix or data frame and want to change one or
more observations to NA. I think this will do the trick:
# assume the matrix or data frame is named "ajdat"
randomNA<-function(x,nNA=1) {
dimx<-dim(x)
x[sample(1:dimx[1],nNA),sample(1:dimx[2],nNA)]<-NA
return(x)
}
So
Hello,
What type of data do you have? A vector? Or is it a matrix, a
data.frame, a list, etc?
Suppose it is a vector named x. Then you could do something like
rate <- 0.2
is.na(x) <- sample(length(x), rate*length(x))
At an R prompt type
?is.na
?sample
Hope this helps,
Rui Barradas
Às 21:
Hi,
I want to simulate missing at random for my dataset. Do you know an easy way to
do it?
I want to try not to have the missing�s for the same observations. I mean if
one observation is been selected randomly to have missing I don�t want to have
all the var of the same obs missing.
I want to
aniel Nordlund [mailto:djnordl...@gmail.com]
Sent: Friday, February 02, 2018 4:44 PM
To: Michael Ashton; r-help@r-project.org
Subject: Re: [R] command line fails
On 2/2/2018 4:52 AM, Michael Ashton wrote:
> Hi - Think this is quick help. Not sure how to trap what is causing my simple
> script to
On 2/2/2018 4:52 AM, Michael Ashton wrote:
Hi - Think this is quick help. Not sure how to trap what is causing my simple
script to run fine in R, but fail immediately when called from rscript. I can
put all sorts of traps in the script itself, but when called from the command
line the r window
: Michael Ashton
> Cc: Duncan Murdoch; r-help@r-project.org
> Subject: Re: [R] command line fails
>
>
> Quoting Michael Ashton :
>
>> Fascinating. The script runs fine in 3.2.5, but won't run in 3.4.3
>> even with ALL lines commented out.
>>
>> I have no i
om: Duncan Murdoch [mailto:murdoch.dun...@gmail.com]
Sent: Friday, February 02, 2018 9:03 AM
To: Michael Ashton; r-help@r-project.org
Subject: Re: [R] command line fails
On 02/02/2018 8:20 AM, Michael Ashton wrote:
I don't think it's the path or the slashes. I run other files in
this same m
1.655.8006
-Original Message-
From: Duncan Murdoch [mailto:murdoch.dun...@gmail.com]
Sent: Friday, February 02, 2018 9:03 AM
To: Michael Ashton; r-help@r-project.org
Subject: Re: [R] command line fails
On 02/02/2018 8:20 AM, Michael Ashton wrote:
> I don't think it's the path or t
: 551.655.8006
-Original Message-
From: Duncan Murdoch [mailto:murdoch.dun...@gmail.com]
Sent: Friday, February 02, 2018 8:16 AM
To: Michael Ashton; r-help@r-project.org
Subject: Re: [R] command line fails
On 02/02/2018 7:52 AM, Michael Ashton wrote:
Hi - Think this is quick help. Not sure
o: Michael Ashton; r-help@r-project.org
Subject: Re: [R] command line fails
On 02/02/2018 7:52 AM, Michael Ashton wrote:
> Hi - Think this is quick help. Not sure how to trap what is causing my simple
> script to run fine in R, but fail immediately when called from rscript. I can
> put all so
On 02/02/2018 7:52 AM, Michael Ashton wrote:
Hi - Think this is quick help. Not sure how to trap what is causing my simple
script to run fine in R, but fail immediately when called from rscript. I can
put all sorts of traps in the script itself, but when called from the command
line the r wind
Hi - Think this is quick help. Not sure how to trap what is causing my simple
script to run fine in R, but fail immediately when called from rscript. I can
put all sorts of traps in the script itself, but when called from the command
line the r window simply flashes and closes.
There's probably
## Use the split argument to summary.aov
## This tests the levels of tension within each level of wool using a common
## Residuals sum of squares.
sapply(warpbreaks, levels)
model2 <- aov(breaks ~ wool/tension, data = warpbreaks)
colnames(model.matrix(model2))
## [1] "(Intercept)""woolB"
Dear All,
Suppose I do :-
head(warpbreaks)
model1<- aov(breaks ~ wool*tension,data = warpbreaks)
summary(model1)
There is significant interaction. So I need to test for simple effects of
wool at each level of tension and vice versa. I can do a subset and then
do a one way anova for each level o
thank you very much Jim!
I'll try it.
bw
c
Sent from my iPhone
> Em 30/06/2016, às 20:33, Jim Lemon escreveu:
>
> Hi Carlos,
> The STATA function assumes estimated population SDs. If you have
> sample SDs you can specify with this:
>
> combine<-function(n,mu,sd,sd.type=c("pop","sample")) {
> N
Hi Carlos,
The STATA function assumes estimated population SDs. If you have
sample SDs you can specify with this:
combine<-function(n,mu,sd,sd.type=c("pop","sample")) {
N<-sum(n)
mean<-sum(n*mu)/N
if(sd.type[1]=="sample") {
meanss<-(n[1]*(mean-mu[1])^2+n[2]*(mean-mu[2])^2)/N
SD<-sqrt(sum(sd
... Time to do your homework. Have you gone through any R tutorials?
Some recommendations here: https://www.rstudio.com/online-learning/#R
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 Breat
; Moreira Maia
> Sent: 30 June 2016 16:03
> To: r-help@r-project.org
> Subject: [R] Command to combine means?
>
> Dear all,
> I'm newbie with R (changing from STATA), and I can't find some commands.
> One of those is the &quo
Dear all,
I'm newbie with R (changing from STATA), and I can't find some commands.
One of those is the "combine", which I use to combine means like this:
n1 m1 sd1 n2 m2 sd2
combine 12 3 1 34 45 4
Combine has calculated the following values:
comb
See this link for the function varEntryDialog() itself:
http://www.r-bloggers.com/user-input-using-tcltk/
Ivan
Le 12/10/15 15:57, Ivan Calandra a écrit :
Dear Nick,
You might find the function varEntryDialog() useful:
http://www.r-bloggers.com/user-input-using-tcltk-2/
HTH,
Ivan
--
Ivan Cal
Dear Nick,
You might find the function varEntryDialog() useful:
http://www.r-bloggers.com/user-input-using-tcltk-2/
HTH,
Ivan
--
Ivan Calandra, PhD
University of Reims Champagne-Ardenne
GEGENAA - EA 3795
CREA - 2 esplanade Roland Garros
51100 Reims, France
+33(0)3 26 77 36 89
ivan.calan...@univ
Dear nicholas.wray,
Re:
> Hi I am sure that there is a command in R which tells the prog to wait until
> you have input a value for a variable, but for the life of me I can't find it.
> Searches on the net only seem to talk about inputting datasets etc, not about
> real time single inputs. I'd
Hi I am sure that there is a command in R which tells the prog to wait until
you have input a value for a variable, but for the life of me I can't find it.
Searches on the net only seem to talk about inputting datasets etc, not about
real time single inputs. I'd be most grateful if anyone could p
And for completeness, on linux:
system(paste0("xdg-open ",getwd()))
there's a function in a package somewhere that hides the system
dependencies of opening things with the appropriate application, and
if you pass a folder/directory to it I reckon it will open it in the
Explorer/Finder/Nautilus//x
On 03/08/2015 11:19 AM, Jonathan Greenberg wrote:
> Folks:
>
> Is there an easy function to open a finder window (on mac) or windows
> explorer window (on windows) given an input folder? A lot of times I want
> to be able to see via a file browser my working directory. Is there a good
> R hack t
Set your path with setwd(“my_path”) and then use file.choose().
You could have gotten this information sooner with a simple online search.
Mark
R. Mark Sharp, Ph.D.
Director of Primate Records Database
Southwest National Primate Research Center
Texas Biomedical Research Institute
P.O. Box 760549
Folks:
Is there an easy function to open a finder window (on mac) or windows
explorer window (on windows) given an input folder? A lot of times I want
to be able to see via a file browser my working directory. Is there a good
R hack to do this?
--j
[[alternative HTML version deleted]]
I've been told that my messages are being rejected because it is being
posted via nabble in HTML format. I was advised to re-send this
directly to r-help@r-project.org. My apologies if you get this twice.
When I use bash + readline and ~/.inputrc contains "editing-mode vi",
I can press "v" to sw
When I use bash + readline and ~/.inputrc contains "editing-mode vi", I can
press "v" to switch to from the command line editing to a full vi session
editing of a command. This doesn't seem to happen in R. Is there a
configuration setting/file that I can set to get this behaviour?
Furthermore
:11 -0400
> To: r-help@r-project.org
> Subject: [R] command help
>
> Dear colleagues,
> I wanted to run a command to do iteration for the following equation:
> Pj+1=TT11+FtransposeTT22F-FtransposeTT21-TT12
> F+y[(Atranspose-FtransposeBtranspose)P(A-BF)]
>
> where TT11, TT22
I cannot make sense of your email. This is partly due to your use of HTML,
which the Posting Guidelines warn you not to do.
The symbolic language used on this mailing list is R. The linear algebra
operations available in R are rather straightforward. Please read the
documentation and convey yo
Dear colleagues,
I wanted to run a command to do iteration for the following equation:
Pj+1=TT11+FtransposeTT22F-FtransposeTT21-TT12
F+y[(Atranspose-FtransposeBtranspose)P(A-BF)]
where TT11, TT22,TT12, TT21, F transpose, A, B and F are matrices and y is
a scalar
we want to find the iteration for P
When running a system file from within R, I have just started to get a
"command not found" error although my PATH seems to be properly set and I
can run the same system file from the terminal. The program I am trying to
run is 'fastsimcoal' and is in /usr/local/bin. I confirm this in the
terminal
Dear allI am trying to carry out step-wise panel regression analysis by making
adaptation in the use of plm package. Say, I am trying to regress the explained
variable (DEP) on 3 explanatory variables (EX1, EX2, EX3) using a panel data
set (dat). Of course, the required set of instructions would
GIYF
http://goo.gl/yUAIJl
On Fri, Jun 6, 2014 at 5:42 AM, kafi dano wrote:
> Hi
>
> for all user in R
>
> please send me the command of least absolute value (LAV ) in R programming
>
> TQ.
>
>
> Kafi Dano Pati
> Ph.D candidate ( mathematics/statistics)
> Department of mathematical Science/ f
Hi
for all user in R
please send me the command of least absolute value (LAV ) in R programming
TQ.
Kafi Dano Pati
Ph.D candidate ( mathematics/statistics)
Department of mathematical Science/ faculty of Science
University Technology Malaysia
81310 UTM, Johor Bahru, Johor, Malaysia
IC.
esday, May 6, 2014 11:22 AM
To: r-help@r-project.org
Subject: [R] conversion error from numeric to factor in raster: Error in
1:ncol(r) : argument of length 0, r command: as.factor()
Hello together,
I was wondering how I can solve the following conversion problem of a
raster file: when I try to
org] On
Behalf Of Stefan Schmidt
Sent: Tuesday, May 6, 2014 11:22 AM
To: r-help@r-project.org
Subject: [R] conversion error from numeric to factor in raster: Error in
1:ncol(r) : argument of length 0, r command: as.factor()
Hello together,
I was wondering how I can solve the following conversion
Hello together,
I was wondering how I can solve the following conversion problem of a
raster file: when I try to convert the values from the raster (r) from
numeric into a factor via as.factor(r) always the error appears: "Error
in 1:ncol(r) : argument of length 0".
r <- raster(ncol=5, nrow=
te a code that executes an R command at specific time
> intervals.
>
> É want R to do that instead of the operating system.
>
> Any help/pointer extremely welcome.
>
> Thanks in advance,
> Costas
>
> [[alternative HTML version deleted]]
>
>
>
Costas Vorlow gmail.com> writes:
> I am trying to write a code that executes an R command at specific time
> intervals.
>
> É want R to do that instead of the operating system.
>
> Any help/pointer extremely welcome.
Don't do it. Just rely on cron [if you're
Hello,
I am trying to write a code that executes an R command at specific time
intervals.
É want R to do that instead of the operating system.
Any help/pointer extremely welcome.
Thanks in advance,
Costas
[[alternative HTML version deleted
deviation: "perl -walne 'blah regexp
print $F[0]' file.txt | r sd -", to plot my perl-extracted dataset: "perl
-walne 'regexp blah' | r -dp -".
It has few more perks, but running full R is always an option.
Tomek
P.S. I moved it to Google Code, for easier a
On Oct 2, 2013, at 11:07 , C.H. wrote:
> Have a look at the littler.
>
> http://dirk.eddelbuettel.com/code/littler.html
>
Or Rscript (comes standard with R) for that matter:
$ echo '2+2' | Rscript -
[1] 4
-pd
> On Sun, Sep 29, 2013 at 3:36 AM, Tomek R wrote:
>> Hi,
>> I have found myself
Have a look at the littler.
http://dirk.eddelbuettel.com/code/littler.html
On Sun, Sep 29, 2013 at 3:36 AM, Tomek R wrote:
> Hi,
> I have found myself often doing simple statistical analysis using Linux
> command line on a single dataset. Therefore, I put a perl script together,
> which makes
On 13-09-28 11:18 AM, Srinivas Sridhara wrote:
Hi,
I was trying to get an answer to this issue:
bookRatingData <- read.table(file.choose(),header=TRUE,nrows=1048570)
Warning message:
In read.table(file.choose(), header = TRUE, nrows = 1048570) :
incomplete final line found by readTableHeade
Hi,
I have found myself often doing simple statistical analysis using Linux command
line on a single dataset. Therefore, I put a perl script together, which makes
it
easier:https://github.com/religa/statshttps://github.com/religa/stats/blob/master/r
The idea behind simpleR is that it becomes a s
Hi,
I was trying to get an answer to this issue:
bookRatingData <- read.table(file.choose(),header=TRUE,nrows=1048570)
Warning message:
In read.table(file.choose(), header = TRUE, nrows = 1048570) :
incomplete final line found by readTableHeader on
'C:\Users\srinivas\Downloads\BX-Book-Ratings
On Mon, Sep 2, 2013 at 5:01 PM, David Epstein
wrote:
> Dear Yihui
> Thanks very much for drawing my attention to knitr, which I had not heard of
> before. Also thanks for pointing out the bug in Sweave, which I don't fully
> understand, but I don't want to spend time and effort on understanding
in the command sub, because sub does not seem to be able to output an
>> expression with a single backslash.
>>
>> I tried the previous version as follows in my .Rnw document
>> \Sexpr{print(sub("_", "_", version$platform))}
>> When Sweave is run,
; You have to escape the underscore
>>
>> \Sexpr{gsub("_", "\_", print(version$platform))}
>>
>> Best regards,
>>
>> Thierry
>>
>>
>> Van: r-help-boun...@r-project.org [r-help-boun...
On 13-09-02 3:18 PM, David Epstein wrote:
Dear Thierry,
Your suggestion doesn't work on my version of R. Here's what I get
gsub("_", "\_", print(version$platform)
Error: '\_' is an unrecognized escape in character string starting ""\_"
print(gsub("_", "\_", version$platform))
Error: '\_' is
>
> Thierry
>
> ________
> Van: r-help-boun...@r-project.org [r-help-boun...@r-project.org] namens David
> Epstein [david.epst...@warwick.ac.uk]
> Verzonden: maandag 2 september 2013 17:38
> Aan: r-help@r-project.org
> Onderwerp: [R] Sweave:
maandag 2 september 2013 17:38
Aan: r-help@r-project.org
Onderwerp: [R] Sweave: printing an underscore in the output from an R command
I am working with Sweave and would like to print out into my latex document the
result of the R command
version$platform
So what I first tried in my .Rnw docum
I am working with Sweave and would like to print out into my latex document the
result of the R command
version$platform
So what I first tried in my .Rnw document was \Sexpr{print(version$platform)}.
However, the output from this command is the string "x86_64-apple-darwin10.8.0"
(w
o work with it from home,
>but
>there is no button to import from excel in my edition. Is there anyone
>who
>knows how to get this feature, so i dont have to type in commands or
>change
>my excel documents everytime?
>
>Thanks in advance
>/Nick
>
>--
>View this messa
On Apr 3, 2012, at 10:57 AM, nimoke wrote:
Hello
I have been searching for almost 2 hours for a certain plug-in/
package, so
im making this thread as i hope you can help me find it.
I had my first lesson in "Statistics in use" today, and when we
worked on
the school computers, we could d
excel documents everytime?
Thanks in advance
/Nick
--
View this message in context:
http://r.789695.n4.nabble.com/Import-from-excel-button-in-R-command-tp4529023p4529023.html
Sent from the R help mailing list archive at Nabble.com.
__
R-help@r-proj
Michael,
GREAT !! It worked.
Thanks a lot.
Aniruddha.
From:
"R. Michael Weylandt"
To:
Aniruddha Mukherjee
Cc:
R-help
Date:
02/23/2012 07:10 PM
Subject:
Re: [R] How can I ran an R command whcih is present as the content of a
character object
eval(parse(text = rcom))
Micha
eval(parse(text = rcom))
Michael
On Thu, Feb 23, 2012 at 8:30 AM, Aniruddha Mukherjee
wrote:
> I have an object called rcom which was created by the command rcom
> <-"mean(mat_rix$COL_1)". Also the data-frame mat_rix is well defined with
> numeric values in its column 1 and its name is "COL_1".
I have an object called rcom which was created by the command rcom
<-"mean(mat_rix$COL_1)". Also the data-frame mat_rix is well defined with
numeric values in its column 1 and its name is "COL_1".
My question is how to extract (or do something with) the content of rcom
so that it provides the m
Good morning
In case control study
I do have 35 covariates (personal and environmental details about the
patients)
and genotype data for 50 SNPs
I need to apply all the covariates and one SNP at a time in the logistic
regression model
How can i do this in R ?
I have the Covariate file and
" better.
> But I
> could be wrong
> which I only realized after reading your recommendation. michael: if
> i'm
> wrong, then disregard the paper reference that I sent earlier.
>
>
> Mark
>
>
>
> On Fri, Jan 27, 2012 at 2:29 PM, Richard M. Heiberger
&g
;>
>>>>> and he wants to see which coefficient ( B1 or B2 ) "works" better. But
>>>>> I
>>>>> could be wrong
>>>>> which I only realized after reading your recommendation. michael: if
>>>>> i'm
>>>>> wrong
On Thu, Jan 26, 2012 at 11:59 PM, Michael
wrote:
Hi al,
I am looking for a R command to test the difference of two linear
regressoon betas.
Lets say I have data x1, x2...x(n+1).
beta1 is obtained from regressing x1 to xn onto 1 to n.
beta2 is obtained from regressing x2 to x(n+1) onto 1 to n.
Is
gt;>> y = x2 * B2 + epsilon_2
>>>>
>>>> and he wants to see which coefficient ( B1 or B2 ) "works" better. But
>>>> I could be wrong
>>>> which I only realized after reading your recommendation. michael: if
>>>> i'm wrong, the
aper reference that I sent earlier.
>>>
>>>
>>> Mark
>>>
>>>
>>>
>>> On Fri, Jan 27, 2012 at 2:29 PM, Richard M. Heiberger
>>> wrote:
>>>
>>>> It looks like you might be asking for the anova() on two mode
x1 + x2 + x3, data=something)
>>> M2 <- lm(y ~ x2 + x3, data=something)
>>> anova(M1, M2)
>>>
>>> Please send a reproducible example to the list if more detail is needed.
>>>
>>> Rich
>>>
>>> On Thu, Jan 26, 2012 at 11:
els.
>>
>> M1 <- lm(y ~ x1 + x2 + x3, data=something)
>> M2 <- lm(y ~ x2 + x3, data=something)
>> anova(M1, M2)
>>
>> Please send a reproducible example to the list if more detail is needed.
>>
>> Rich
>>
>> On Thu, Jan 26, 2012 a
.
>
> Rich
>
> On Thu, Jan 26, 2012 at 11:59 PM, Michael wrote:
>
> > Hi al,
> >
> > I am looking for a R command to test the difference of two linear
> > regressoon betas.
> >
> > Lets say I have data x1, x2...x(nï¼1).
> > beta1 is obtained fr
wrote:
> Hi al,
>
> I am looking for a R command to test the difference of two linear
> regressoon betas.
>
> Lets say I have data x1, x2...x(nï¼1).
> beta1 is obtained from regressing x1 to xn onto 1 to n.
>
> beta2 is obtained from regressing x2 to x(nï¼1) onto 1
283.
On Thu, Jan 26, 2012 at 11:59 PM, Michael wrote:
> Hi al,
>
> I am looking for a R command to test the difference of two linear
> regressoon betas.
>
> Lets say I have data x1, x2...x(nï¼1).
> beta1 is obtained from regressing x1 to xn onto 1 to n.
>
> beta2 is ob
Hi al,
I am looking for a R command to test the difference of two linear
regressoon betas.
Lets say I have data x1, x2...x(nï¼1).
beta1 is obtained from regressing x1 to xn onto 1 to n.
beta2 is obtained from regressing x2 to x(nï¼1) onto 1 to n.
Is there a way in R to test whether beta1 and
On 11-06-08 9:28 AM, Michael Davidsen wrote:
Hello.
I'm a visually impaired statistician, working at the National Institute of
Public Health in Denmark.
I would like to use R for some analysis and have succesfully installed version
2.13.0 on my Windows XP labtop.
I then would like to run R in
Hello.
I'm a visually impaired statistician, working at the National Institute of
Public Health in Denmark.
I would like to use R for some analysis and have succesfully installed version
2.13.0 on my Windows XP labtop.
I then would like to run R interactively but unfortunately the textfont of t
After four years of using R, I finally have run into a problem to which I can't
find a solution in the guides or forums and thus I am making my first post.
Our lab has Fortran code for population modeling. I have been using R as a
wrapper to process the raw data, generate a batch script that co
Dear list,
I am running R in slave mode to run some calculations on a remote cluster and
would like to somehow retrieve the last command in the case that it causes an
error. When an error occours, my job is just quitted and it takes me a lot of
work to find out which command in my rather lengt
Thank you for this alternative. Both seem to work on my systems.
Sebastien
Prof Brian Ripley wrote:
On Tue, 4 Jan 2011, Duncan Murdoch wrote:
On 04/01/2011 3:21 PM, Sebastien Bihorel wrote:
Dear R-users,
Is there a way I can ask R to execute the "write("hello
world",file="hello.txt")" comma
On Tue, 4 Jan 2011, Duncan Murdoch wrote:
On 04/01/2011 3:21 PM, Sebastien Bihorel wrote:
Dear R-users,
Is there a way I can ask R to execute the "write("hello
world",file="hello.txt")" command directly from the UNIX shell, instead
of having to save this command to a .R file and execute this f
Thank you
That is exactly what I was looking for.
Sebastien
Duncan Murdoch wrote:
On 04/01/2011 3:21 PM, Sebastien Bihorel wrote:
Dear R-users,
Is there a way I can ask R to execute the "write("hello
world",file="hello.txt")" command directly from the UNIX shell, instead
of having to save th
On 04/01/2011 3:21 PM, Sebastien Bihorel wrote:
Dear R-users,
Is there a way I can ask R to execute the "write("hello
world",file="hello.txt")" command directly from the UNIX shell, instead
of having to save this command to a .R file and execute this file with R
CMD BATCH?
Yes. Some versions
Dear R-users,
Is there a way I can ask R to execute the "write("hello
world",file="hello.txt")" command directly from the UNIX shell, instead
of having to save this command to a .R file and execute this file with R
CMD BATCH?
Thank you
Sebastien
On Sat, Oct 23, 2010 at 6:43 PM, Lee Hachadoorian
wrote:
> sh -c 'R_DEFAULT_PACKAGES="$R_DEFAULT_PACKAGES Rcmdr" R "$@"'
>
> This is pulled directly from the launcher that Ubuntu creates when it
> installs Rcmdr from the repository.
>
It seems that the CRAN Rcmdr also ships an Rcmdr.desktop file i
On Sat, Oct 23, 2010 at 6:43 PM, Lee Hachadoorian
wrote:
> sh -c 'R_DEFAULT_PACKAGES="$R_DEFAULT_PACKAGES Rcmdr" R "$@"'
>
Oh, nice! Thanks a lot, it works like a charm. Regards
Liviu
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/lis
1 - 100 of 204 matches
Mail list logo