similar to: R-Square for Robust Regression Model

Displaying 20 results from an estimated 7000 matches similar to: "R-Square for Robust Regression Model"

2010 Oct 03
2
How to programme R to randomly replace some X values with Outliers
Dear experts, I am a beginner of R. I'm looking for experts to guide me how to do programming in R in order to randomly replace 5 observations in X explanatory variable with outliers drawn from U(15,20) in sample size n=100. The replacement subject to y < 15. The ultimate goal of my study is to compare the std of y with and without the presence of outliers based on average of 1000
2012 Sep 17
2
Problem with Stationary Bootstrap
Dear R experts,   I'm running the following stationary bootstrap programming to find the parameters estimate of a linear model:     X<-runif(10,0,10) Y<-2+3*X a<-data.frame(X,Y) coef<-function(fit){   fit <- lm(Y~X,data=a)    return(coef(fit)) }  result<- tsboot(a,statistic=coef(fit),R = 10,n.sim = NROW(a),sim = "geom",orig.t = TRUE)   Unfortunately, I got this
2019 Sep 27
2
Compile samba github code and flash the build binary to embedded device
Hi Sir/Madam/Miss, I am a firmware engineer. I would like to implement file sharing between embedded device and android phone/ios phone/windows. I download the samba source code from https://github.com/samba-team/samba/tree/v4-11-stable with version v4-11-stable. I follow the instruction from link : https://wiki.samba.org/index.php/Build_Samba_from_Source to compile. I expected the compilation
2010 May 12
1
fisher's posthock test or fisher's combination test
Hi to all is there a fisher's post hock test or fisher's combination test in R available? Maybe not -- its very easy to do it in excel ... Kind regards Knut
2019 Sep 30
3
Compile samba github code and flash the build binary to embedded device
Hi Rowland, The above files are built with AD DC. Without AD DC, the files size reduce from 186 kB to 74 kB. Without AD DC, the embedded device will act as a host. Questions: 1. Does the host still able to share file to Windows, IOS and Android devices? 2. Does 74 kB of samba files is the typical file size be implemented in embedded device? Thank you. On Mon, 30 Sep 2019 at 09:36, Hock Leong
2019 Sep 28
2
Compile samba github code and flash the build binary to embedded device
On 28/09/2019 15:39, Hock Leong Ang via samba wrote: > Hi All, > May I have some advise on this issue? > Thank you. > > On Fri, 27 Sep 2019 at 10:55, Hock Leong Ang <anghockleong501 at gmail.com> > wrote: > >> Hi Sir/Madam/Miss, >> >> I am a firmware engineer. I would like to implement file sharing between >> embedded device and android phone/ios
2006 Nov 25
1
Great work on wxRuby2
I''m impressed by the latest release of wxRuby2! Thanks to all the developers who worked on making this possible. It''s great to have wxWidgets working with Ruby - and the new sample programs are a tremendous help. There is a 700+ page book on wxWidgets - Cross-Platform GUI Programming with
2019 Oct 04
1
Compile samba github code and flash the build binary to embedded device
Also an option is to look here https://github.com/sahlberg/libsmb2 That might also help. There is more on this subject. Cifs/kernel (5.3) related. But i havent read into that. Google is your friend here. ;-) Greetz, Louis > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Rowland penny via samba > Verzonden: vrijdag 4 oktober
2019 Oct 02
0
Compile samba github code and flash the build binary to embedded device
Hi Rowland and All, Can you answer 2 question below? 1. Does the host still able to share file to Windows, IOS and Android devices? 2. Does 74 kB of samba files is the typical file size be implemented in embedded device? On Mon, 30 Sep 2019 at 14:37, Hock Leong Ang <anghockleong501 at gmail.com> wrote: > Hi Rowland, > The above files are built with AD DC. > Without AD DC, the
2005 Feb 18
4
R & bash script
Hi how is it possible to use more than one command when i'm didn't want use R CMD BATCH for specific reason? $ echo "(x<-1:10)" | R --vanilla works $ echo "(x<-1:10 ;y<-20:30 ;lm(y ~ x))" | R --vanilla works not. Is it further possible using bash variables like $i from a loop in the bash echo call i.e. dm$x$i$k <-
2013 Jul 12
3
Eliminar filas que cumplen con mas de un criterios simultaneamente ...
Estimada comunidad, tengo el siguiente problema: Un data.frame con muchas filas de las que debo eliminar aquellas que cumplen varios criterios al mismo tiempo. Por ejemplo este data.frame: sol con dia NCar NIns isom area rep tipo 1 con 0.001 1 160s 0 s 6.083543e-01 1 2 con 0.001 1 161c 1 c 1.391274e-03 1 <NA> 3 con 0.001 1 161c 1 c
2009 Jun 18
1
lattice logaritmic scale (basis "e" ), rewriting labels using xscale.component
Hi there, sorry for troubling everybody once again, I've got a problem rewriting Sarkar's function for rewriting the tick locations in a logaritmic way (s. http://lmdvr.r-forge.r-project.org/code/Chapter08.R): His example works for log 2 but I need log e (natural logarithm). My problem is that if I replace 2 with "e" (using paste()), I get the error message that the location
2003 Sep 09
1
How limits are set in a scales list
I have a lattice plot that has 4 pages with 4 columns and 8 rows per page. I wish to have the rows use a separate x-axis since their ranges are quite different, but I wish to have those same limits used on each page. By setting an element of the scales list to something like x = list(limits = lim.list$CFU, lim.list$CFU, lim.list$CFU, lim.list$CFU,
2013 Jul 12
2
Eliminar filas que cumplen con mas de un criterios simultaneamente ...
Hola de nuevo. Leí mal. Si vas a eliminar esas filas, entonces usa: sqldf("select * from graph where sol!='lim' and dia!=2") En el correo anterior seleccioné precisamente a esas descartando a las demás. Culpa de mis anteojos... jeje. On Fri, Jul 12, 2013 at 5:20 PM, Freddy Omar López Quintero < freddy.vate01@gmail.com> wrote: > ​Hola.​ > > >> Tengo que
2007 Oct 25
1
Strange behavior with time-series x-axis
I recently called plot(x,y) where x was an array of POSIXct timestamps, and was pleasantly surprised that it produced a nice plot right out of the box: z <- as.POSIXct(c("2006-10-26 08:00:00 EDT","2007-10-25 12:00:00 EDT")) x <- seq(z[1],z[2],len=100) y <- 1:100 plot(x,y,type="l") The X axis had nice labels, one tick mark every other month. (Plotting on
2017 Feb 09
3
changes in src/unix/system.c break builds on FreeBSD
Dear R devs, For some days now (~ February, 4th), I am not able to build the recent tarballs of R-devel on a FreeBSD test box anymore. The breakage seems to be related to the newest overhaul of src/unix/system.c: [..snip..] gcc49 -std=gnu99 -I. -I../../src/include -I../../src/include -I/usr/local/include -DLIBICONV_PLUG -I/usr/local/include -isystem /usr/local/include -DHAVE_CONFIG_H -fopenmp
2006 May 19
1
trouble with plotrix package
Hello list, I wrote a simple program to plot data on polar axes, taking advantage of the plotrix package and its function radial.plot. The basic plot works fine, but I am having difficulties with the formatting. There are three problems, but I thought I would attack them one at a time. Here is the first: If my data set contains values with all vector lengths between 0 and 100 (and various
2013 Aug 09
1
Agrupar los terminos de la leyenda
Bueno, una pequeña vuelta de tuerca más usando ggplot.. Aunque no quedó tan limpio como el de Carlos (gran resolucion) tambien te sirve. Un saludo library(ggplot2) dec.df <- mat[mat$sol=="dec",] lim.df <- mat[mat$sol=="lim",] dol.df <- mat[mat$sol=="dol",] dec.dr<-qplot(dia,V5,sol,data=dec.df,color=con2,geom=c("line"),facets=.~sol) lim.dr
1997 Oct 03
67
SAMBA
On Fri, 3 Oct 1997, Daniel Feenberg wrote: > Gosh, you are doing well at a project that I gave up on about a year > ago. I only wish you were close enough to do some consulting for us. I guess so do I ;-) Using the new approach I posted to samba-list earlier today, it is not really all that tricky any more. Watch for my reports on the list, you may be able to implement what I've done
2019 Sep 28
0
Compile samba github code and flash the build binary to embedded device
Hi All, May I have some advise on this issue? Thank you. On Fri, 27 Sep 2019 at 10:55, Hock Leong Ang <anghockleong501 at gmail.com> wrote: > Hi Sir/Madam/Miss, > > I am a firmware engineer. I would like to implement file sharing between > embedded device and android phone/ios phone/windows. > > I download the samba source code from >