Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

140 results for “from:Les”

[RsR] best robust fit
Samuel Le · Dec 1, 2010 · r-sig-robust

Have you thought of the Akaike Information Criterion? It is the R squared penalized by the number of regressors. You can access to it using reg$AIC if reg is your regression object. Samuel -----Original Message----- From: r-sig-robust...

(no subject)
Nolwenn Le Meur · Aug 6, 2003 · r-help

Hi everybody, Hope your are not all on holyday because I've got a problem that is going to drive me crazy... I would like to remove some rows from a dataframe. The rows correspond to some specific indexes which...

Text on a boxplot graph
François Le Lay · Apr 23, 2003 · r-help

Hi all, Could anybody help me figure out how to write text on a boxplot. I have to plot 9 boxplots side by side on a single graph. On the x-axis I write numeric values with the 'names' argument...

[Bioc-devel] pkgdown::build_site_github_pages fails with "Quarto articles require Bootstrap 5"
Louis Le Nézet · Oct 10, 2024 · bioc-devel

Hi, Did you add in your /mypackage/pkgdown/_pkgdown.yml: ```yml template: bootstrap: 5 ``` Best, Louis -----Message d'origine----- De?: Bioc-devel <bioc-devel-bounces at r-project.org> De la part de Oleksii Nikolaienko Envoy??: jeudi 10 octobre 2024...

execute r-code stored in a string variable
Samuel Le · Aug 2, 2011 · r-help

Yes, you can use: eval(parse(text=c)) On the other hand I would not recommend to use c as a variable name as it is the name of a very important function in the R language to aggregate data...

macro in a loop
Le Wang · Mar 21, 2009 · r-help

Thank you all for the help! Le On Sat, Mar 21, 2009 at 4:23 PM, Pankaj Chopra <pchopra at ncsu.edu> wrote: > data.year[j] <- > read.table(paste("c:/data/",year[j],".csv",sep=''),header=T,sep=",") > > > should do...

ta-lib & quantlib libraries for R
Samuel Le · May 26, 2010 · r-sig-finance

Here is Quantlib for R: http://cran.r-project.org/web/packages/RQuantLib/index.html thanks, Samuel balakrishnan.ilango at thomsonreuters.com wrote: > Hi, > > I have been searching for ta-lib and quantlib libraries for R. I > couldn't find...

CGI and RSPerl
Nolwenn Le Meur · Oct 16, 2002 · r-help

Hi, Does anybody try to write CGI script using RSPerl package ? I am interested in RWeb but that doesn't really do what I want. In fact I would like the user to load the file to analyze; then a...

Populate a matrix
Samuel Le · Oct 5, 2011 · r-help

mat <- matrix(ncol = length(x), nrow = length(y)) for(i in 1:length(x)) { mat[,i] = y} HTH, Samuel -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of...

heteroscedastic non-linear model with crossed random effects
LE Street · Feb 18, 2011 · r-sig-mixed-models

Dear all I am trying to model the relationship between the leaf area (lai) and total foliar nitrogen (tfn) in vegetation plots, in order to understand the sources of variation in tfn across sites and vegetation types. lai and tfn...

check availability of a file in R
Samuel Le · Sep 7, 2011 · r-help

Does file.exists answer to your question? file.exists(".RData") If you are not sure of the exact name of the file but know it contains ".RData", you can try: List.files(directory,".RData") -----Original Message----- From: r-help-bounces...

How to obtain the graph of fitted values against one variable after estimation?
Le Wang · Aug 26, 2010 · r-help

Thanks, David. I did try to use predict() to obtain the graph, but it somehow looks different from the one generated by "plot" command. So, I was wondering if there is any way that I can get the one generated...

Fits & splines
Eric-Olivier Le Bigot · Apr 20, 2005 · r-help

Hello all, Do you know of convenient functions that can do: 1) a fit "f(x)" of data points with a spline, and *then* 2) weighted fits of other data points ** with a model of the form a*f(x...

lattice and display
Nolwenn Le Meur · Dec 19, 2002 · r-help

Hi, I have just started using lattice and it looks great. But I already have 3 questions about xyplot display. ---------------------------------------------------------------------------- --------------------------------- 1.I would like to create two differeny xyplot with different color to identify my different groups but I have...

use of formula in survey analysis with replicated weights
LE TERTRE Alain · Jun 28, 2013 · r-help

Hi there, I would like to use a formula inside a call to withReplicates in a survey analysis. If the initial call with formula expressed inside the function works as expected, defining the formula outside gives an error message. See...

Problem plotting axes on graphs
Les Stather · Sep 14, 2008 · r-help

2008/9/14 lesj_stather at hotmail.co.uk I ran your example Speed <- cars$speed Distance <- cars$dist > Speed [1] 4 4 7 7 8 9 10 10 10 11 11 12 12 12 12 13 13 13 13...

set.seed and for loop
Samuel Le · Jun 9, 2011 · r-help

What about: set.seed(1001) total <- 0 data <- vector("list", 30) for(i in 1:30) { data[[i]] <- runif(50) } set.seed(1001) data[[23]] <- runif(50) HTH Samuel -----Original Message----- From: r-help-bounces at r-project.org [mailto...

text file problem-Help needed
Samuel Le · Feb 8, 2011 · r-help

Hello, Make sure you have your file in your workspace directory (you can get it on your R console with the command getwd()). HTH, Samuel -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at...

Needing some good stuff on valuation
Samuel Le · Jun 1, 2010 · r-sig-finance

There is a good book by Peter Jaeckel as well -can't remember the title now but it has Monte Carlo in it. Samuel Otziger Simon (otis) wrote: > Maybe there are better books but "Monte Carlo Methods in Financial Engineering...

vectorized mle / optim
Arnaud Le Rouzic · Oct 24, 2007 · r-help

Hi the list, I would need some advice on something that looks like a FAQ: the possibility of providing vectors to optim() function. Here is a stupid and short example summarizing the problem: -------------------------------- example 1 ------------ 8< ---------------------- library(stats4) data <- rnorm...

Can't find what you're looking for? Try searching with Google .