Displaying 20 results from an estimated 2000 matches similar to: "Problems with X11 - device"
2000 Apr 04
2
customizing help()
Hi
I tried to customize help(), so it starts the compiled html help, and
searches in all packages.
I wrote the following function:
> my.help
function(topic){
help(topic, package=.packages(all=T), lib.loc=.lib.loc, chmhelp=T)
}
When I use it with
>my.help(help)
give the following error:
Error in help(topic, package = .packages(all = T), lib.loc = .lib.loc, :
No documentation
2000 Mar 20
1
ESS Compilation error
Im running R 0.99 on SuSE 6.3 with Linux 2.2.14 and Xemacs 21.1.
When I try to compile ESS the processes stops with an error message:
Making info file `ess.info' from `ess.texi'.
./newfeat.texi:3: itemize requires an argument: the formatter for @item.
./newfeat.texi:9: itemize requires an argument: the formatter for @item.
makeinfo: Removing output file
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Yes, keep the $(lsb-release -cs) there. This allows you to change the version of the OS without having to change anything else (for instance we are migrating all of our docker to 24.04 LTS right now, so we only have to modify the FROM entry and all of our Dockerfile will still work).
From: Gerber, Lauren J <lauren.gerber at helsinki.fi>
Date: Thursday, July 11, 2024 at 2:21?AM
To:
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi Marco,
Thank you for the follow up email.
In the line below, do I replace $(lsb-release -cs) with jammy (Ubuntu 22.04) or leave it alone:
Add-apt-repository ?deb https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/?
It?s good to know about installations for Bioconductor. I am not currently using it, but I may need it in the future for other projects.
Br,
Lauren
--
Lauren J. Gerber
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
And sorry for the spam, but I meant to say that the Dockerfile is basically following the steps from https://cloud.r-project.org/bin/linux/ubuntu/ as Lauren was trying to do but start by installing the pre-requisites needed to deploy the r-base package on a Ubuntu 22.04 Docker image (which is NOT a base 22.04 but a minimally striped version of 22.04).
From: marcoblanchette at icloud.com
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Lauren, little oversight from my Dockerfile, if you want to follow the CRAN steps and get the R from the cloud.r-project.org server, you want to replace
&& add-apt-repository -y "ppa:marutter/rrutter4.0"
With
&& add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
The ppa repo is Michael Rutter personal repo
2003 Oct 22
2
non linear regression with R
Dear Colleagues,
I have x, y data (pollen and seed dispersal from oaks !) that I would
like to fit with a function which look like this:
p(a,b,x,y)=b/(2*pi*a?gamma(2/b))*exp(-(square_root(x?+y?)/a)power(b))
I am looking for a and b values that fit my data at best.
Can someone give me hints to perform such an analysis with R ?
Thanks a lot
Sophie
Sophie Gerber
2005 Apr 06
2
conditional selection with Factors
Hi All,
I want to select a level of a factor variable from a dataset. I have the folowing data:
dataset: use
factor: month (use$month, levels=February, July)
> use[1:5,]
month registration use department size
1 February KKG151GP Y Safety 1.6
To select February I tried:
> use[use$month=="February"]
Error in "[.data.frame"(use, use$month ==
2006 Nov 09
1
optimize function with integral form ?
Hi all,
Does anybody have the experience of using optim to estimate variables with integral forms?
here the code:
trun.mean<- function(x) # t is the threshold
{
mu=x[1];
sigma=x[2];
t=x[3];
f <- function(x) (1/(sigma*sqrt(2*pi)))*exp(-(x-mu)^2/(2*sigma^2));
pdf.fun <- function(x) x*f(x);
integrate(f,thre,upper=Inf)$value/integrate(pdf.fun,thre,upper=Inf)$value ;
}
when I
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi Dirk,
Thank you so much for looking into this when you got home. I greatly appreciate it.
I was actually in the midst of writing to everyone the following message:
?.
?.
?.
Hi All,
I have some good news. ? My docker image is now up-to-date with R version 4.4.1.
I first had to clear a bunch of unused data using docker system prune ?force. Apparently, it cleared over 32.53 gigs of data, and
2024 Jul 08
2
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hmm? It?s picking up the pre-made binary from ppa:marutter/rrutter4.0 using apt-get install. Isn?t it what Lauren?s trying to do?
From: Dirk Eddelbuettel <edd at debian.org>
Date: Monday, July 8, 2024 at 11:57?AM
To: marcoblanchette at icloud.com <marcoblanchette at icloud.com>
Cc: Gerber, Lauren J <lauren.gerber at helsinki.fi>, r-sig-debian at r-project.org <r-sig-debian
2004 Mar 29
4
strange thing with sd
Dear R people
I came across a strange thing:
sd(rep(0.01, 15)) #0
sd(rep(0.001, 15)) #4.489023e-19
sd(rep(0.00001, 15)) #0
sd(rep(0.00000001,15)) #1.712427e-24
sd(rep(0.01, 13)) #1.805557e-18
sd(rep(0.001, 13)) #4.513894e-19
sd(rep(0.00001, 13)) #0
sd(rep(0.00000001,13)) #0
sd(rep(5.01, 15)) #0
sd(rep(5.001, 15)) #4.489023e-19
sd(rep(5.00001, 15))
2024 Oct 15
1
R Package: 'ggbreak' in Dockerfile
Lauren,
On 15 October 2024 at 13:51, Gerber, Lauren J wrote:
| I just tried fixing my script and added library(BiocManager) before library
| (ggbreak), then rebuilt the image, and am still getting the same error.
You need _two_ distinct commands. First
install.packages("BiocManager")
and second once that is done use it to install 'ggbreak' from BioConductor
2002 Aug 23
3
y-axis with "break"
Dear R-users
I would like to draw a barplot with a special y-axis. Most of my data points are
in the range from -50 to 50, apart from one value that is 550. I would now like
to have a y-axis from -50 to 50, then a "break" and the "rest" of the y-axis,
let's say from 500 to 600. In order to make clear what I'm trying to do, I
attached a figure.
Is it possible to do
2024 Oct 15
2
R Package: 'ggbreak' in Dockerfile
Don't you have to load BiocManager before using it?
-----Original Message-----
From: R-SIG-Debian <r-sig-debian-bounces at r-project.org> On Behalf Of Gerber, Lauren J
Sent: Tuesday, October 15, 2024 9:15 AM
To: r-sig-debian at r-project.org
Cc: dirk at eddelbuettel.com
Subject: Re: [R-sig-Debian] R Package: 'ggbreak' in Dockerfile
Hi All,
Does anyone have experience
2024 Oct 15
2
R Package: 'ggbreak' in Dockerfile
Hi All,
Does anyone have experience successfully installing and loading the R package ?ggbreak? in a Docker container?
I ask because I have successfully used the ?ggbreak? package in a script outside the Docker container (on my local computer), but for some reason, I get the following error message when trying to load it using library(ggbreak) or library(?ggbreak?) inside the same script that
2012 Dec 05
3
enable HA on xcp 1.6
Hi all,
today i tried to enable HA on xcp 1.6 but when i enable it through xencenter
I received the following error in xensource.log:
Dec 5 17:56:26 xcp1 xapi: [ info|xcp1|490661|Async.pool.enable_ha
R:9119ce88ffcb|xapi_ha] Using statefile: /etc/xensource/static-vdis/0/disk
Dec 5 17:56:26 xcp1 xapi: [debug|xcp1|490661|Async.pool.enable_ha
R:9119ce88ffcb|xapi_ha]
2005 Sep 09
2
test for exponential,lognormal and gammadistribution
hello!
i don't want to test my sample data for normality, but exponential- lognormal-
or gammadistribution.
as i've learnt the anderson-darling-test in R is only for normality and i am
not supposed to use the kolmogorov-smirnov test of R for parameter estimates
from sample data, is that true?
can you help me, how to do this anyway!
thank you very much!
nadja
2009 Mar 23
1
Axes in 3D plots
I am wondering if anyone knows how to change or rotate the default axes on a 3D scatterplot. I would like to change which sides of the cube the 3 axes are displayed on.
Many thanks,
Leah Gerber
[[alternative HTML version deleted]]
2009 Mar 20
2
A category reduction problem
I am trying to print out a list of strings of length 11 based on
integers 0 through 10. The rules as given to me for the ordering are:
The first digit must be 0.
The 2nd digit must be 0 or 1.
The 3rd digit must equal the 2nd digit or the 2nd digit +1.
...
Given the final digit, n, all digits 0 through n must appear in a given
sequence.
So the final 1024 item list should look like
0 1 2 3 4 5