search for: helpersmg

Displaying 5 results from an estimated 5 matches for "helpersmg".

Did you mean: helpers
2024 Feb 19
5
Looping
I need to read csv files repeatedly, named data1.csv, data2.csv,? data24.csv, 24 altogether. That is, data<-read.csv(?data1.csv?) ? data<-read.csv(?data24.csv?) ? Is there a way to do this in a loop? Thank you. Steven from iPhone [[alternative HTML version deleted]]
2017 Dec 31
1
Order of methods for optimx
...der of methods giving non consistant results) or are they specific to the model I try to fit ? If it is known problem, where I can find the best advice about order of methods ? #################### To reproduce what I said: install.packages("http://www.ese.u-psud.fr/epc/conservation/CRAN/HelpersMG.tar.gz", repos=NULL, type="source") install.packages("http://www.ese.u-psud.fr/epc/conservation/CRAN/phenology.tar.gz", repos=NULL, type="source") library("phenology") library("car") library("optimx") library("numDeriv")...
2017 Dec 31
0
Draw Overlapping Circles with shaded tracks
Another solution: library("HelpersMG") plot(0:10,type="n",axes=FALSE,xlab="",ylab="", asp=1) ellipse(center.x = 3, center.y = 5, radius.x = 5, radius.y = 5, lwd=10, col=NA, border=rgb(red = 1, green = 0, blue=0, alpha = 0.5)) ellipse(center.x = 8, center.y = 5, radius.x = 5, radius.y = 5, lwd=10,...
2017 Dec 31
2
Draw Overlapping Circles with shaded tracks
That code nees the plotrix package: library(plotrix) pdf("circles.pdf") plot(0:10,type="n",axes=FALSE,xlab="",ylab="") draw.circle(4,5,radius=3,border="#ff0000aa",lwd=10) draw.circle(6,5,radius=3,border="#0000ffaa",lwd=10) dev.off() On Friday, December 29, 2017, 6:06:32 PM EST, Jim Lemon <drjimlemon at gmail.com> wrote:
2017 Dec 31
1
Draw Overlapping Circles with shaded tracks
..._______________ *AbouEl-Makarim Aboueissa, PhD* *Professor of Statistics* *Department of Mathematics and Statistics* *University of Southern Maine* On Sun, Dec 31, 2017 at 8:40 AM, Marc Girondot via R-help < r-help at r-project.org> wrote: > Another solution: > > library("HelpersMG") plot(0:10,type="n",axes=FALSE,xlab="",ylab="", > asp=1) ellipse(center.x = 3, center.y = 5, radius.x = 5, radius.y = 5, > lwd=10, col=NA, border=rgb(red = 1, green = 0, blue=0, alpha = 0.5)) > ellipse(center.x = 8, center.y = 5, radius.x = 5, radius.y =...