search for: lsce

Displaying 10 results from an estimated 10 matches for "lsce".

Did you mean: lsc
2008 Feb 25
4
Highlighting different series with colors
Hello, I have a data frame with 3 vectors $x, $y, and $type. I would like to plot $x~$y and having different colors for the corresponding points, one for each level of $type. Would someone know how to do that? Is it possible to then generate a legend automatically? Valentin
2010 Dec 07
3
string
Hi, I'm running R 2.11 Does anyone know if it possible to transform one character vector to one character string ? Many thanks Benoit -- Benoit Wastine Laboratoire des Sciences du Climat et de l?Environnement (LSCE/IPSL) CEA-CNRS-UVSQ CE Saclay Orme des merisiers B?t 703 - Pte 13A 91191 Gif sur Yvette Cedex France Tel : 33 (0)1 69 08 21 97 Fax : 33 (0)1 69 08 77 16
2010 Jun 05
2
how to use 'points' function to plot two curves with errbar
Dear R Users, I am using R on windows. how to use 'points' function to plot two curves with errbar I am doing like: x.val <- as.integer(names(co2mean)) errbar(x.val, co2mean, co2mean + co2sd, co2mean - co2sd, xaxt='n', col=1, xlab=NA,ylab=NA)# obs error bar lines(x.val, co2mean, col=1, lwd=2) errbar(x.val, co2tm3.month.mean, co2tm3.month.mean + co2sd.tm3, co2tm3.month.mean -
2010 Jun 07
0
open files from ftp site
...t I don't how to do it. I've tried the functions url, download.file but each time I have a message "cannot open URL 'ftp://ftp.cea.fr'" .. and I don't kwow why .. Thanks for the help Benoit -- Benoit Wastine Laboratoire des Sciences du Climat et de l?Environnement (LSCE/IPSL) CEA-CNRS-UVSQ CE Saclay Orme des merisiers B?t 703 - Pte 13A 91191 Gif sur Yvette Cedex France Tel : 33 (0)1 69 08 21 97 Fax : 33 (0)1 69 08 77 16
2010 Jul 07
1
how to download files from ftp site
Hi all, I'm running R 2.10.1 on Windows XP and I'd like to read files from a ftp site. Does anybody know how to do ? Thanks Benoit -- Benoit Wastine Laboratoire des Sciences du Climat et de l?Environnement (LSCE/IPSL) CEA-CNRS-UVSQ CE Saclay Orme des merisiers B?t 703 - Pte 13A 91191 Gif sur Yvette Cedex France Tel : 33 (0)1 69 08 21 97 Fax : 33 (0)1 69 08 77 16
2010 Oct 14
1
execute a script in command line
Dear all, I'm running R on Linux OS. I want to execute a programme "toto.R" in command line. Is it possible ?? Thanks Benoit -- Benoit Wastine Laboratoire des Sciences du Climat et de l?Environnement (LSCE/IPSL) CEA-CNRS-UVSQ CE Saclay Orme des merisiers B?t 703 - Pte 13A 91191 Gif sur Yvette Cedex France Tel : 33 (0)1 69 08 21 97 Fax : 33 (0)1 69 08 77 16
2008 Jun 04
2
Constructing groupedData objects in nlme - a little problem
Dear R-help, I am trying to create groupedData objects using the nlme library. I'm missing something basic, I know: Here is the first example in ch.1 of Pinheiro & Bates (2000): library(nlme) x2=Rail$travel;x1=Rail$Rail;eg1=data.frame(x1,x2);eg1gd=Rail print(eg1gd) x11();print(plot(eg1gd)) femodel=lm(x2~x1-1,data=eg1gd) print(femodel$coefficients) Result: x12 x15 x11
2018 Feb 26
0
Gam with mrf smoother (mgcv)
Hallo, I want to use gam from the mgcv package with a mrf smoother. This is my data set (`x`) ?????? y????????? id ??? 1? 0.6684496? 1 ??? 2? 0.6684496? 2 ??? 3? 0.6684496? 3 ??? 4? 0.6684496? 4 ??? 5? 0.6684496? 5 ??? 6? 0.6684496? 6 ??? 7? 0.6684496? 7 ??? 8? 0.5879492? 8 ??? 9? 0.5879492? 9 ??? 10 0.5879492 10 ??? 11 0.5879492 11 ??? 12 0.5879492 12 ??? 13 0.5879492 13 ??? 14
2008 Jun 11
1
Word wrapping for character objects (WINDOWS R ONLY)
Can anybody help me with this problem? ** ONLY WINDOWS R - PROBLEM DOESN'T OCCUR ON LINUX ** I want to print a long character to screen: > getOption("width") [1] 60 > z=(1:20)/10 #z is a vector of length between 20 and 30 (depending on user options) containing lengths in mm (i.e. each element is 1-5 characters long) > str1=paste("The depths chosen are
2008 Aug 29
1
nls() fails on a simple exponential fit, when lm() gets it right?
Dear R-help, Here's a simple example of nonlinear curve fitting where nls seems to get the answer wrong on a very simple exponential fit (my R version 2.7.2). Look at this code below for a very basic curve fit using nls to fit to (a) a logarithmic and (b) an exponential curve. I did the fits using self-start functions and I compared the results with a more simple fit using a straight lm()