Displaying 20 results from an estimated 6000 matches similar to: "Rcmdr installation under Unbuntu installatiion errors"
2009 Mar 05
2
R editor that will work with Rcmdr
R 2.8.1
Windows XP
Fedora Linux.
I would like a suggestion for an editor that will help format my R code that can be used with Rcmdr. Is there anything I need to know about running or installing an editor when using Rcmdr? I run R on both Windows and Linux (Fedora).
Thank you,
John
John David Sorkin M.D., Ph.D.
Chief, Biostatistics and Informatics
University of Maryland School of Medicine
2009 Feb 20
2
Problems installing RODBC as part of Rcmdr and as separate package
Fedora 10
R 2.8.1
I hope someone can tell me the meaning of error I received trying to install RODBC and how I can get around the problem.
n.b. The error originally occurred then I was installing Rcmdr. I then tried to install RODBC separately and received the same error.
checking sql.h usability... no
checking sql.h presence... no
checking for sql.h... no
checking sqlext.h usability... no
2009 May 06
1
dependency ‘Matrix’ is not available when installing Rcmdr
R 2.8.1
Windows XP
Any suggestions for addressing the problem listed below, obtained when
installing Rcmdr
The downloaded packages are in
C:\Documents and Settings\jsorkin\Local
Settings\Temp\RtmpaxlG6g\downloaded_packages
updating HTML package descriptions
Warning message:
dependency ?Matrix? is not available
Thanks,
John
John David Sorkin M.D., Ph.D.
Chief, Biostatistics and
2010 Oct 24
1
140 packages in R Commander!!
Dear List
I just downloaded and installed R 2.12.0 and then installed R Commander .
First it got RCmdr and Car, and then suggested for other packages for
utilizing the full functionality- I clicked yes!
I got 140 packages installed!!! Cran Mirror was UCLA...
Here is the list.
Is this intentional- I can see some packages like snow and multicore which
are desirable but quite optional.(see list
2008 Aug 15
3
Rcommander installation fails on Fedora 9
Fedora 9
R 2.7.1
I tried to install R on my Linux system using
install.packages("Rcmdr", dependencies=TRUE).
I received many, many, many error messages. I hope someone can suggest a
fix.
The output from warnings()
is listed below. A more detailed list of errors from one of the failed
installations is listed below the warnings:
> warnings()
Warning messages:
1: In
2009 Aug 29
1
Rcmdr installalation under Viata gives a warning. Do I need to do anything?
Windows Vista
R 2.9.1
When trying to install Rcmdr I get the message shown below. What does it mean, do I need to do anything?
The downloaded packages are in
C:\Users\John Sorkin\AppData\Local\Temp\RtmpRCLbhe\downloaded_packages
updating HTML package descriptions
Warning message:
In file.create(f.tg) :
cannot create file 'C:\PROGRA~1\R\R-29~1.1/doc/html/packages.html', reason
2007 Oct 01
3
3-dimensional graph
Windows XP
R 2.3.1
I have a funciton
fit1<-lm(y~x+z)
Is there a function that will produce a 3-dimensional plot of y,x,z?
I looked at the help files, but did not find a clean answer to my question.
Thanks,
John
John Sorkin M.D., Ph.D.
Chief, Biostatistics and Informatics
University of Maryland School of Medicine Division of Gerontology
Baltimore VA Medical Center
10 North Greene Street
2006 Dec 09
7
Simulation with R
An apparatus exists whereby a collection of balls is displaced to the
top of a stack by suction. A top level (Level 1) each ball is shifted
1 unit to the left or 1 unit to the right at random with equal
probability. The ball then drops down to level 2. At Level 2, each
ball is again shifted 1 unit to the left or 1 unit to the right at
random. The process continues for 15 levels and the balls are
2005 Jul 28
4
CSV file and date. Dates are read as factors!
I am using read.csv to read a CSV file (produced by saving an Excel file
as a CSV file). The columns containing dates are being read as factors.
Because of this, I can not compute follow-up time, i.e.
Followup<-postDate-preDate. I would appreciate any suggestion that would
help me read the dates as dates and thus allow me to calculate follow-up
time.
Thanks
John
John Sorkin M.D., Ph.D.
Chief,
2007 Jan 18
3
selecting rows for inclusion in lm
I am having trouble selecting rows of a dataframe that will be included
in a regression. I am trying to select those rows for which the variable
Meno equals PRE. I have used the code below:
difffitPre<-lm(data[,"diff"]~data[,"Age"]+data[,"Race"],data=data[data[,"Meno"]=="PRE",])
summary(difffitPre)
The output from the summary indicates that
2012 Nov 23
1
Adding a function with default parameters into the Rcmdr menu
Hi everyone,
I made some tests with Rcmdr, to add a function with default parameters :
For example (very simple):
myfunction<-function(var="314"){
print("hello")
print(var)
}
if I run myfunction() directly i see :
> myfunction()
[1] "hello"
[1] "314"
it's ok.
But if i edit de Rcmdr-menu.txt (in
2007 Oct 01
4
data structure with coefficients, and call from lm()
Widows XP
R 2.3.1
I have been trying to make a data structure that will contain both the coefficients from a linear regression along with column and row titles AND the call, i.e.
myreg<-lm(y~x+y+z)
whatIwant<-cbind(c(summary(myreg)$call,"",""),summary(myreg)$coefficients)
Neither the statement above, nor any one of twenty variations I have tried work. I would appreciate
2005 Jul 15
3
Dividing a vector into ntiles
R 2.1.1
Win 2k
Would someone suggest a method (or methods) that can be used to
determine ntile cutpoints of a vector, i.e. to determine values that can
be used to divide a vector into thirds such as 0-33 centile, 34-66
centile, 67-100 centile. If for example I had a vector:
1,2,3,4,5,6,7,8,9
and wanted to divide the vector into thirds
I would have cut-points of 3, and 6.
Thanks,
John
John
2006 May 02
1
Rcmdr problem - SciViews R
Hi,
I am getting following error messages while using SciViews R. It displays a message saying: Package or Bundle Rcmdr was not found in C:\Software\R-22.1.1\Library would you like to install now?. However the Rcmdr package is there in the library. I reinstalled Rcmdr but still gives me same error message every time I try to use one of the GUI functions. Any pointers would be of great
2006 May 12
4
Title of page with multiple plots
I want to place four plots on a page, and I would like to have all four
plots share a common title. I have tried the following code, but the
title is centered over the fourth graph and not centered across all four
plots. Does anyone have any suggestions?
R 2.1.1
windows xp
oldpar<-par(mfcol =c(1,4),ask=TRUE)
plot(p,varp)
plot(p,SEp)
plot(p,CVp)
plot(p,ppval)
title(paste("P and 95%CI
2004 Nov 22
1
Rcmdr -> doItAndPrint -> summary method of S4-class object not in Rcmdr window but R Console
Dear list member,
John Fox proposed to me posting this problem to R-Help:
I have written a function suited for Rcmdr and included this in a R-file
located in Rcmdr/etc as well as an augmented `Rcmdr-menus.txt'.
Now, I am faced with the following problem:
method show() of a S4-class object works flawlessly, that is `doItAndPrint'
works flawlessly and its output is returned correctly into
2008 Apr 16
2
Blank windows in Rcmdr
I started to learn R and like to use Rcmdr. I have the latest R (R-2.6.2) and R commander (1.3-14). When I go to Tools menu (for example) pull down "load packages" in Rcmdr, a blank window is up and there is nothing in it. I can not select and move to next step. This also happens with the other functions like in Graphs menu. I know that Rcmdr uses Tcl/Tk interface. I do not have this
2005 Feb 01
2
Rcmdr doesn't seem to work
Context: Windows XP - R 2.0.1 with the latest updated packages (including
Rcmdr)
I'm trying to load Rcmdr to use the 3d plots (e.g. scatter3d) but here it
is what happens:
> library(Rcmdr)
Loading required package: zoo
Loading required package: strucchange
Loading required package: sandwich
Loading required package: relimp
Loading required package: mvtnorm
Loading required package:
2006 Jan 26
2
What's wrong with Rcmdr?
Hi all,
I successfully installed Rcmdr. And I type "library(Rcmdr)", nothing
happened;
or if I select menu item "load package" and select "Rcmdr", still nothing
happened...
Why didn't Rcmdr start?
Very strangely, if I close the R console and restart R console, every first
time I load "Rcmdr", it starts! But not second, third time...
What's wrong
2005 Jul 29
6
Binary outcome with non-absorbing outcome state
I am trying to model data in which subjects are followed through time to
determine if they fall, or do not fall. Some of the subjects fall once,
some fall several times. Follow-up time varies from subject to subject.
I know how to model time to the first fall (e.g. Cox Proportional
Hazards, Kaplan-Meir analyses, etc.) but I am not sure how I can model
the data if I include the data for those