Displaying 20 results from an estimated 1100 matches similar to: "Detpack package"
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(...) ?
>
>
>
2024 May 20
3
Listing folders on One Drive
Hello I have lots of folders of individual Scottish river catchments on my
uni One Drive. Each folder is labelled with the river name eg "Tay" and
they are all in a folder named "Scotland"
I want to list the folders on One Drive so that I can cross check that I
have them all against a list of folders on my laptop.
Can I somehow use list.files() - I've tried various things
2023 Jan 11
1
Topological network Map
Hello I'd like to create a simple topological map of a river system, ie all
the waterways, where they join and points on them such as gauging stations
so that it looks something like the London Tube map - where distances are
not important but the relationships of the nodes are.
I could probably Heath-Robinson something together but I wondered whether
there was any kind of package already out
2024 Sep 17
1
Getting individual co-ordinate points in k medoids cluster
Hello I am using k medoids in R to generate sets of clusters for datasets
through time. I can plot the individual clusters OK but what I cannot find
is a way of pulling out the co-ordinates of the individual points in the
cluster diagrams - none of the kmed$... info sets seems to be this.
Beneath is an example of a k medoid prog using the built in US arrests
dataset - this is not the data I am
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
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
2023 Feb 15
1
p-value in changepoint package
Hello Does anyone know how to get the p values for changepoints in the
"changepoint" package? There is guidance in the CRAN vignette
https://cran.r-project.org/web/packages/changepoint/changepoint.pdf but I
can't make it work to get the p value out... Thanks Nick Wray
[[alternative HTML version deleted]]
2023 Oct 13
1
rnrfa package problems
R help email
Hello I?m trying to work my way through the rnrfa package
RJ-2016-036.pdf (r-project.org)
<https://journal.r-project.org/archive/2016/RJ-2016-036/RJ-2016-036.pdf>
I?ve got it loaded OK and can access the data by the catalogue() command -
gives me a tibble with names, grid refs etc
allStations <- catalogue()
allStations
This works OK
But when I try to run the example
2023 Mar 09
1
web address for R-project
? Thu, 9 Mar 2023 14:43:49 +0100
G?ran Brostr?m <gb at ehar.se> ?????:
> Is it someone's mirror (authorized) of R-project?
It's not currently in the official list of mirrors [*], but anyone can
create a CRAN mirror for their own needs as long as they don't overload
the CRAN master site: https://cran.r-project.org/mirror-howto.html
NexR call themselves a "total data
2023 Mar 09
1
web address for R-project
I got the link cran.nexr.com from a person who claimed that it is the
home of R-project, and indeed, it looks right.
But it doesn't feel right, so I wonder what is going on. Is it someone's
mirror (authorized) of R-project?
Thanks, G?ran
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
2024 May 21
0
Listing folders on One Drive
I would just use
fi <- file.info(dir(path, recursive=TRUE, include.dirs=TRUE))
path could be the OneDrive directory or Scotland (and is not needed if you're already in the directory you want).
Then rownames(subset(fi, isdir)) will contain all the directories. Maybe you want to use grep or other machinery to thin it out.
Regards,
Jorgen Harmse.?
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
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