Displaying 20 results from an estimated 85 matches for "stringpage".
2012 Feb 02
4
an unusual use for R
I thought some of you might be amused by this.
In my non-work time, I'm an avid weaver and teacher of weaving. I'm
working on a project involving creating many detailed weaving
patterns, so I wrote R code to automate it.
Details here:
http://stringpage.com/blog/?p=822
If the overlap between R users and avid tablet weavers turns out to be
>> 1, I'll polish it up and turn it into a package.
Sarah
--
Sarah Goslee
http://www.functionaldiversity.org
2016 Apr 15
1
Decision Tree and Random Forrest
...too.
>> >> >>
>> >> >> Cheers,
>> >> >> Bert
>> >> >>
>> >> >>
>> >> >> Bert Gunter
>> >> >>
>>
>>
>>
>> --
>> Sarah Goslee
>> http://www.stringpage.com
>> http://www.sarahgoslee.com
>> http://www.functionaldiversity.org
>>
>
>
> --
> Sarah Goslee
> http://www.stringpage.com
> http://www.sarahgoslee.com
> http://www.functionaldiversity.org
>
[[alternative HTML version deleted]]
2013 Mar 28
2
Can R read in .xyz files
Hi,
Can R read in .xyz files? If so, what is the package,
thanks
--
Shane
[[alternative HTML version deleted]]
2018 May 30
0
par(mfrow=c(3,4)) problem
...-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
--
Sarah Goslee
http://www.stringpage.com
http://www.sarahgoslee.com
http://www.functionaldiversity.org
[[alternative HTML version deleted]]
2013 Jan 29
3
Can I define a object array in R?
Here is my problem,
100 decision trees were built(similar to random forest) and I want to
replace some of them by new trees.
How can I define a tree array including 100 trees, i.e. t[100], and every
t[n] is an "C5.0" object,
such that
when a new tree comes, i can do
n<-10
t[n]<-C5.0(...)
--
View this message in context:
2016 Apr 15
0
Decision Tree and Random Forrest
...gt; Cheers,
> >> >> >> Bert
> >> >> >>
> >> >> >>
> >> >> >> Bert Gunter
> >> >> >>
> >>
> >>
> >>
> >> --
> >> Sarah Goslee
> >> http://www.stringpage.com
> >> http://www.sarahgoslee.com
> >> http://www.functionaldiversity.org
> >>
> >
> >
> > --
> > Sarah Goslee
> > http://www.stringpage.com
> > http://www.sarahgoslee.com
> > http://www.functionaldiversity.org
> >
>
&g...
2013 May 16
1
connect to local mySQL database
Hi,
I would like to access a local mysql database.
In python using the sqlite3 library it is quite straightforward. I just have to pass the path to the sqlite-file;
sqlite3.connect('.../xy.sqlite')
Is there something similar in R (or specifically in the RMySQL package)?
It seems like I have to use the MySQL function in the RMySQL package in order to ...
"initializes a MySQL
2006 Apr 05
3
package docs: examples format
...g it each time.
Is that the preferred approach, or is there something "nicer"?
Ideally, I'd like to include one global example that covers all related
functions, but I can't find a way to do that neatly (other than possibly
a vignette?).
Thanks,
Sarah
--
Sarah Goslee
http://www.stringpage.com
[[alternative HTML version deleted]]
2016 Apr 14
3
Decision Tree and Random Forrest
...39;m sure there are
> >> >> lots of good web resources, too.
> >> >>
> >> >> Cheers,
> >> >> Bert
> >> >>
> >> >>
> >> >> Bert Gunter
> >> >>
>
>
--
Sarah Goslee
http://www.stringpage.com
http://www.sarahgoslee.com
http://www.functionaldiversity.org
[[alternative HTML version deleted]]
2012 Jul 10
2
how can I show the xlab and ylab information while using layout
hi R-users:
I want to draw three plot into one figure by layout and the script has
been shown below.
But I find R does not show the xlab and ylab information completely as
shown the figure attached.
How can I midify the script.? thank you .
xxlab<-paste(cpmd," (",ro,"%)",sep=" ")
yylab<-paste(rfmd," (",co,"%)",sep=" ")
2006 Mar 27
5
How to create a directoy with R
Hello, I am trying to create directories with R. I would like R to
create directories because it is platform independent. I tried using
file() and searching in "R Data Import/Export" but I did not succeed.
I think it must be some function since exists the unlink to remove
directories (and files).
Pau
2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
...d the posting guide
>> http://www.R-project.org/posting-guide.html
>> > and provide commented, minimal, self-contained, reproducible code.
>>
>>
>>
>> --
>> Sarah Goslee
>> http://www.functionaldiversity.org
>>
> --
Sarah Goslee
http://www.stringpage.com
http://www.sarahgoslee.com
http://www.functionaldiversity.org
[[alternative HTML version deleted]]
2011 Dec 03
4
Data alignment
Hello!
I have a data.frame which looks like:
Name - Value
A - 400
A - 300
B - 200
B - 350
C - 500
C - 350
D - 450
D - 600
E - 700
E - 750
F - 630
F - 650
I want to add another column where all A,B should get an index 1, all C,D an
index of 2 and all E,F an index of 3 so that the data.frame looks like:
ID - Name - Value
1 - A - 400
1 - A - 300
1 - B - 200
1 - B - 350
2 - C - 500
2 - C - 350
2
2012 Nov 22
4
Data Extraction
Hello,
I would appreciate if someone could help me resolve the following:
1. df1[!is.na( X1 | X2 | X3 | X4 | X5),][,1:5] # This does not work
2. Is these message harmful? The following object(s) are masked from 'df1 (position 3)':
X1, X2, X3, X4, X5
Thanks,
Pradip Muhuri
#Reproducible Example
set.seed(5)
df1<-data.frame(matrix(sample(c(1:10,NA),100,replace=TRUE),ncol=5))
2018 May 30
4
par(mfrow=c(3,4)) problem
Hi all;
I need to put 12 different plot2 into the same matrix. So my array for the
matrix will be par(mfrow=c(3,4)). I am running ggplot2 to produce my 12
plots. For some reason, par(mfrow=c(3,4)) did not turn out 3*4 matrix.
my basic R codes for each plot is
par(mfrow=c(3,4))
library(ggplot2)
p <- ggplot(a, aes(x=Genotypes, y=Plant_hight, size=Plant_hight,
color=Showing_rate)) +
.
.
Best
2012 May 15
9
help
1. Emma is performing an experiment that requires individual handling of some animals. The sizes of the animals are lognormally distributed: The natural logarithms of their sizes has a normal distribution with mean 3 and standard deviation 0.4. The time (in minutes) it takes to handle each animal is given by
10 + s · 1.5 + eε for animals with s ≤ 20 20 + s · 0.8 + eε for animals with s > 20
2006 Dec 20
5
writing R extension
I'd like to develop a simple library in R in which to save my
particular functions.
I have read the manual on "Writing R Extensions" but it's too
difficult. Someone could help me?
I want only save my personal function (recorded in R-code, not in C) in
"myLibrary" and I want to call it with:
>library (myLibrary).
After this, the functions should be available
2005 Jun 02
3
merge large matrices
Dear List
I have two large matrices A and B. Both have the same dimensions, let's
say 20k x 30k. About half the cells of B are missing. Now I'm looking
for an efficient way to merge them, so that the missing values in B are
replaced by the corresponding values of A.
Matrix A
[,1] [,2] [,3]
[1,] 1 2 3
[2,] 4 5 6
merged with Matrix B
[,1] [,2] [,3]
[1,] 10 NA NA
[2,] NA 50 60
2005 Jun 06
1
how to generate pairwise plots with data frames - tia
hi -
sorry for a newbie question, but I've tried to go through the
documentation and couldn't find anything that would address my specific
need.
in a nutshell, I have a txt file containing a data matrix with 10
columns of data. I would like to generate pairwise plots of the data,
i.e. 1 column against the other 9. Since this will produce 50 plots,
I'd like to do it using a
2006 Feb 23
1
partial mantel test
I would like to know how to run a partial mantel test controlling for spatial
autocorrelation and correlation with other environmental variables. It seems that
with function included in vegan for partial mantel test I can only test for the
relationship between two variables controlling for the effect of a third one.
Thanks a lot
Alexandra
---
Lic. Alexandra Sapoznikow
Centro Nacional