similar to: Can't open R files

Displaying 20 results from an estimated 10000 matches similar to: "Can't open R files"

2018 May 21
0
Can't open R files
On 21/05/2018 7:20 AM, Nick Wray via R-help wrote: > Hello. I'm not sure whether this is strictly the right forum but here goes... I have got a new (well reconditioned) laptop and have installed R studio on it. That works fine if I say write a little prog directly into it or paste R script from a word doc. But if I try to open an R prog (which I've written elsewhere, the laptop
2018 May 21
1
Can't open R files
Oh fab it works! thanks v much i'd never used open file like that before Nick > On 21 May 2018 at 12:24 Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > > > On 21/05/2018 7:20 AM, Nick Wray via R-help wrote: > > Hello. I'm not sure whether this is strictly the right forum but here goes... I have got a new (well reconditioned) laptop and have installed R studio
2024 Jan 09
4
Truncated plots
Hello As a postgrad I have been helping an undergraduate student with R coding but she has a problem with R studio on her laptop which I can't fix - basically when she runs a plot it appears without a y axis label with the black line plot frame hard against the plot window and the bottom of the plot, where you would expect to see the horizontal axis and the x axis label etc is completely
2024 Jan 09
1
Truncated plots
? Tue, 9 Jan 2024 16:42:32 +0000 Nick Wray <nickmwray at gmail.com> ?????: > she has a problem with R studio on her laptop Does the problem happen with plain R, without Rstudio? What's the student's sessionInfo()? > I have a screenshot which could email if anyone needs to see what it > looks like. I think that PNG screenshots are allowed on the mailing list, so it could
2018 Mar 25
1
Limit in Directory Hierarchy?
A quick question - is there a limit to the number of levels one can go down when setting the directory in R studio? I ask because I have been trying to set the directory to a folder 8 levels down which R studio won't allow, and when I try to set the directory through Session/Set Working Directory, it won't even show the lowest level folder: setwd("C:/Users/supermollusc/Desktop/151017
2009 Aug 27
1
Mappery : uncertain Thinkpads (Repost?)
Followups set, hesitantly, to gmane.linux.redhat.fedora.general I thought I had posted this to both these groups, but my newsreader doesn't show it in either. I have three Garmin GPSs (an Etrex Vista and two Rino 120s), which I want to use under Fedora 11 Linux with four PCs, and two IBM- reconditioned Thinkpads, T30 & T42. Garmin software suites (Metroguide USA and Topo US 2008)
2005 Aug 26
1
[Patch] Vnet update
This patch fixes the tools/vnet makefiles so that vnets will compile and includes updates to the vnet implementation. Vnet ids are increased to 128 bits. The vnet module will insmod whether xen-br0 exists or not. Signed-off-by: Mike Wray <mike.wray@hp.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2018 Apr 14
1
Fwd: Re: Reading xpt files into R
> On Apr 14, 2018, at 12:18 PM, WRAY NICHOLAS via R-help <r-help at r-project.org> wrote: > > > -------- Original Message ---------- > From: WRAY NICHOLAS <nicholas.wray at ntlworld.com> > To: peter dalgaard <pdalgd at gmail.com> > Date: 14 April 2018 at 20:18 > Subject: Re: [R] Reading xpt files into R > > > Well yesterday I'd downloaded
2011 Mar 11
3
Installation failure
I'm trying to reinstall CentOS on a machine I've reconditioned for it, but for reasons I can't fathom, when the installation disk comes up and prompts for the install type, and I type either <enter> (graphics isntall) or "linux text"<enter>, after it loads the initrd image, the machine shuts off. It's an older machine I built myself (and ran CentOS on for a
2023 Jul 23
1
col2rgb() function
Just one addition which may or may not be useful: The color palette you use is also known as "Okabe-Ito" and it is the default set of colors in the palette.colors() function. This function also has an optional alpha argument. So if you want to generate these colors with an alpha of 0.3 you can also do: palette.colors(8, alpha = 0.3) or more explicitly palette.colors(8, palette =
2018 Apr 14
0
Fwd: Re: Reading xpt files into R
-------- Original Message ---------- From: WRAY NICHOLAS <nicholas.wray at ntlworld.com> To: peter dalgaard <pdalgd at gmail.com> Date: 14 April 2018 at 20:18 Subject: Re: [R] Reading xpt files into R Well yesterday I'd downloaded the "foreign" package and tried to open the xpt file using that: library(foreign) read.xport("test.xpt") I got the following
2023 Jul 23
1
col2rgb() function
Nick, I've also made colors transparent by pasting the hex equivalent of, say, 0.3*256 = 76.9 to the hex color code. e.q. for black it might be "#0000004d" and the 4d is 77 in hex. That way you don't need to convert back and forth so much. If col is "#000000" the transparent version is tcol <- paste0(col,"4d") This would work in one step on a whole
2023 Jul 23
2
col2rgb() function
Thanks That works nicely Nick On Sun, 23 Jul 2023 at 19:26, Ben Bolker <bbolker at gmail.com> wrote: > Does adjustcolor() help? > > cb8<- c("#000000", "#E69F00", "#56B4E9", "#009E73","#F0E442", "#0072B2", > "#D55E00", "#CC79A7") > plot(0,0,xlim=c(1,8),ylim=c(0,1)) >
2015 May 18
1
\alias{} --> rather \concept{} for conceptual "links" to help pages
>From R-help, subject "Variable number of loops" I've opened a new thread, moving from R-help to R-devel .. >>>>> Jim Lemon <drjimlemon at gmail.com> >>>>> on Sun, 17 May 2015 09:19:06 +1000 writes: > Hi all, Given the number of help requests that involve > permutations/combinations, and the less than obvious > naming
2023 Dec 01
2
Mann Kendall mutation package?
Hello - does anyone know whether there are any packages for Mann-Kendall mutation tests in R available? The only one I could find online is this MK_mut_test: Mann-Kendall mutation test in Sibada/sibadaR: Sibada's accumulated R scripts for next probably use to avoid reinventing the wheel. (rdrr.io) <https://rdrr.io/github/Sibada/sibadaR/man/MK_mut_test.html> but there doesn't seem to
2003 Apr 04
3
Non x86 architectures
I'm looking for advice on network boot loaders for non x86 systems, in particular PPC-64, IA64 and AMD-64. Any suggestions? Thanks, Andy Wray
2023 Jul 23
1
col2rgb() function
Does adjustcolor() help? cb8<- c("#000000", "#E69F00", "#56B4E9", "#009E73","#F0E442", "#0072B2", "#D55E00", "#CC79A7") plot(0,0,xlim=c(1,8),ylim=c(0,1)) points(1:8,rep(0.5,8),col=cb8,pch=19,cex=2) points(1:8,rep(0.75,8),col=adjustcolor(cb8, alpha.f = 0.3), pch=19,cex=2) On 2023-07-23 2:15 p.m., Nick Wray
2017 Jun 08
0
Rainbow in loop
Does: rainbow(3)[1] rainbow(3)[2] rainbow(3)[3] ... solve your issue? B. > On Jun 8, 2017, at 8:20 AM, WRAY NICHOLAS <nicholas.wray at ntlworld.com> wrote: > > Hi R folk I have a distance time graph for a locomotive and at various times > different events occur on board the loco. I want to put a vertical line on the > speed time graph for each event, but I
2023 Feb 01
1
Detpack package
I did use "detpack" ie not with a capital detpack::chi2testuniform(vals,0.05) gives this: Error: 'chi2testuniform' is not an exported object from 'namespace:detpack' ?? Thanks Nick On Wed, 1 Feb 2023 at 16:29, Eric Berger <ericjberger at gmail.com> wrote: > Detpack or detpack? > > What happens when you try detpack::chi2testuniform(...) ? > > >
2023 Jul 23
2
col2rgb() function
Hello I have a palette vector of colour blind colours (in hexadecimal) which I?m using for plots, but they are not see-through, and as I wanted to overlay some histograms I wanted to convert these colours to rgb, when you can set the opacity. I have found the function col2rgb(), which works in the sense that it gives a vector of numbers but these don?t work directly in rgb because they are too