similar to: Robustbase source question

Displaying 20 results from an estimated 600 matches similar to: "Robustbase source question"

2009 May 12
2
[Fwd: Re: ubuntu problem with 'r-cran-robustbase' [FWD Agustin Lobo]]
Subject: Re: [R-sig-Debian] ubuntu problem with 'r-cran-robustbase' [FWD Agustin Lobo] Date: Tue, 12 May 2009 13:30:49 +0200 From: Agustin Lobo <aloboaleu at gmail.com> Reply-To: aloboaleu at gmail.com To: Dirk Eddelbuettel <edd at debian.org> CC: Martin Maechler <maechler at stat.math.ethz.ch>, R-SIG-Debian at stat.math.ethz.ch References: <18953.17704.527898.355877
2009 May 12
2
ubuntu problem with 'r-cran-robustbase' [FWD Agustin Lobo]
Agustin, posted on R-help. I think the problem is one of the debian/ubuntu package 'r-cran-robustbase' and its setup or (missing?) dependencies. I can confirm Agustin's problem, working on Ubuntu 8.04.2 (8.04 is a "LTS" = long time support version). apt-get install r-cran-robustbase works fine, but when trying to load the package, there's a DLL - dependency on
2009 May 11
0
robustbase: cannot install
This is really odd, I've installed the binary of robustbase through synaptic on an ubuntu 8.04 machine and get: > library(robustbase) Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared library '/usr/lib/R/site-library/robustbase/libs/robustbase.so': libRlapack.so: cannot open shared object file: No such file or directory Error: package/namespace load
2009 May 12
0
[Fwd: Re: Problem at instaling robustbase (Rlapack)]
Dear list, I'm forwarding these 2 messages as suggested by the package developer. My system is > sessionInfo() R version 2.9.0 (2009-04-17) i486-pc-linux-gnu on Ubuntu 8.04, with r-base-core, r-base-dev and r-recommended installed from binaries through Synaptic. I normally install the rest of packages using install.packages() from within R (started from an xterminal by su) Agus
2011 Apr 21
0
C source code question (Robustbase edition)
Hi all, I have been trying to add the line: h = n - p0 + 1; just after h = n / 2 + 1; (line 131) in the source code (the original paper mention this is possible for p0&lt;n). with p0 declared as an int (actually i used the same declaration protocol as n everywhere in the code). The &quot;new&quot; source compiles, but when i give it reasonable values of p0, it runs unto
2013 Mar 04
1
robustbase adjbox segfault - memory not mapped
Hi, I encountered a segfault, memory not mapped error when using adjbox in robustbase. In trying to recreate the issue I found that the error occurs only for large sample size. Here is the code. > require(robustbase) Loading required package: robustbase > x <- rnorm(10) > y <- rep(1, 10) > adjbox(x ~ y) ## gives a plot > x <- rnorm(10000) > y <- rep(1,
2013 Jul 12
1
robustbase compilation problem: probably boneheaded? maybe 32-bit?
With a recent SVN build (R Under development (unstable) (2013-07-10 r63264) -- "Unsuffered Consequences"), I'm having trouble installing the robustbase package. The bottom line is that I *think* it's a 32-bit-system problem, but I could easily be mistaken. robustbase is passing its package checks: http://cran.r-project.org/web/checks/check_results_robustbase.html ... but from
2007 Jun 08
1
Need Help with robustbase package: fitnorm2 and plotnorm2
This is my first post requesting help to this mailing list. I am new to R. My apologies for any breach in posting etiquette. I am new to this language and just learning my way around. I am attempting to run some sample code and and am confused by the error message: Loading required package: rrcov Error in fitNorm2(fdat[, "FSC-H"], fdat[, "SSC-H"], scalefac = ScaleFactor) :
2010 Dec 07
2
robustbase problem [bug?] in adjbox function.
hello list, i'm a bit puzzled by the error message i get when i copy past this in R:
2008 Aug 13
1
problems with packages tseries and robustbase
Dear R Users, Is there a known problem with downloading packages robustbase and tseries from the UK CRAN website ? Thanks in advance, Tolga ========================================================= R version 2.7.1 (2008-06-23) Copyright (C) 2008 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to
2009 May 12
0
[Fwd: Re: Problem at instaling robustbase (Rlapack) (2)]
Martin, Although I did remove the ln libRlapack.so -> ./lapack.so and sudo apt-get install r-cran-robustbase went fine (as does if the installation is done through Synaptic), once I start R I get: > require(robustbase) Loading required package: robustbase Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared library
2012 Nov 24
0
robustbase error message
Hey there. I am running a multiple regression and want to see whether a robust regression would provide different results, since there is some heteroscedasticity and other minor violations of regression assumptions. When I run the model using the robustbase package, > modelrob=lmrob(m1) I receive the following error: > Error in qr.default(x * sqrt(ret$weights)) : > NA/NaN/Inf in
2018 Apr 07
0
Fast tau-estimator line does not appear on the plot
You need to pay attention to the documentation more closely. If you don't know what something means, that is usually a signal that you need to study more... in this case about the difference between an input variable and a design (model) matrix. This is a concept from the standard linear algebra formulation for regression equations. (Note that I have never used RobPer, nor do I regularly
2018 Apr 06
1
Fast tau-estimator line does not appear on the plot
R-experts, I have fitted many different lines. The fast-tau estimator (yellow line) seems strange to me?because this yellow line is not at all in agreement with the other lines (reverse slope, I mean the yellow line has a positive slope and the other ones have negative slope). Is there something wrong in my R code ? Is it because the Y variable is 1 vector and should be a matrix ? Here is the
2018 Mar 31
2
Fast tau-estimator line does ot appear on the plot
Dear R-experts, Here below my reproducible R code. I want to add many straight lines to a plot using "abline" The last fit (fast Tau-estimator, color yellow) will not appear on the plot. What is going wrong ? Many thanks for your reply. ########## Y=c(2,4,5,4,3,4,2,3,56,5,4,3,4,5,6,5,4,5,34,21,12,13,12,8,9,7,43,12,19,21)
2018 Mar 31
0
Fast tau-estimator line does ot appear on the plot
On 31/03/2018 11:57 AM, varin sacha via R-help wrote: > Dear R-experts, > > Here below my reproducible R code. I want to add many straight lines to a plot using "abline" > The last fit (fast Tau-estimator, color yellow) will not appear on the plot. What is going wrong ? > Many thanks for your reply. > It's not quite reproducible: you forgot the line to create
2018 May 08
4
Average of results coming from B=100 repetitions (looping)
Dear R-experts, Here below the reproducible example. I am trying to get the average of the 100 results coming from the "lst" function. I have tried lst$mean and mean(lst). It does not work. Any help would be highly appreciated. #################### ?## R script for getting MedAe and MedAeSQ from HBR model on Testing data install.packages("robustbase") install.packages(
2009 Apr 19
1
package installation error
After installing 2.9.0 I tried loading packages, but keep getting the following error. package 'robustbase' successfully unpacked and MD5 sums checked Error in normalizePath(path) : path[1]="C:\Program Files\R\R-2.9.0\library/robustbase": The system cannot find the file specified I've tried loading various packages with the same result. Thanks for any help. Pat Gray
2009 Aug 31
1
package installation error
On Sun April 19, you posted the following on R-help: > After installing 2.9.0 I tried loading packages, but keep getting the following error. > > package 'robustbase' successfully unpacked and MD5 sums checked > Error in normalizePath(path) : > path[1]="C:\Program Files\R\R-2.9.0\library/robustbase": The system cannot find the file specified > I have had the
2018 May 08
0
Average of results coming from B=100 repetitions (looping)
On 5/8/2018 12:26 PM, varin sacha via R-help wrote: > > Dear R-experts, > > Here below the reproducible example. I am trying to get the average of the 100 results coming from the "lst" function. I have tried lst$mean and mean(lst). It does not work. > Any help would be highly appreciated > > #################### > > ?## R script for getting MedAe and