Displaying 20 results from an estimated 4000 matches similar to: "2 questions about probplot in package e1071"
2016 Apr 04
2
question about probplot in e1071 package
Hello!
I am using probplot in the e1071 package and want to do something like the
following, only with the the 2nd plot overlaying the first. I can't seem to
make it work. Any suggestions?
*library(e1071)
**x <- rnorm(100, mean=5)*
*y <- rnorm(100, mean=3)*
*probplot(x, line=FALSE)
*
*probplot(y, line=FALSE)
*
*Regards,*
*Tom*
[[alternative HTML version deleted]]
2016 Apr 04
0
question about probplot in e1071 package
Luisfo,
Thank you so much! That does what I need.
Best regards,
Tom
On Mon, Apr 4, 2016 at 10:51 AM, Luisfo Chiroque <luisfo89 at yahoo.es> wrote:
> Dear Thomas,
>
> Reading the probplot?s help page, it looks like it is using qqplot
> underneath.
> Thus, I think this is what you need.
> probplot(x, line=FALSE)
> #probplot(y, line=FALSE)
> qq.y <- qqnorm(y,
2016 Apr 04
0
question about probplot in e1071 package
Dear Thomas,
Reading the probplot?s help page, it looks like it is using qqplot underneath.
Thus, I think this is what you need.
probplot(x, line=FALSE)
#probplot(y, line=FALSE)
qq.y <- qqnorm(y, plot=F)
points(qq.y$y, qq.y$x)
I hope this is useful for you.
Best Regards,
Luisfo Chiroque
PhD Student
IMDEA Networks Institute
http://fourier.networks.imdea.org/people/~luis_nunez/
2006 May 19
0
e1071 probplot -grouping
Hello,
I am currently using probplot function in the e1071 package to do
cumulative probability plots . I want to be able to do multiple
cumulative probability plots ( based on a grouping of data) on a single
plot. Any help with this would be greatly appreciated.
Thanks.
2003 Jun 24
2
Can't load e1071
After upgrading to 1.7.0 under debian linux, I can't get e1071 working
properly.
The first problem I had was that g++-3.0 was the standard compiler but
wasn't installed, so I installed it. e1071 then installed correctly, but I
get the following:
aperrin at perrin:~/afshome/papers/authoritarian/R$ R
R : Copyright 2003, The R Development Core Team
Version 1.7.0 (2003-04-16)
R is free
2001 Aug 29
2
Missing functions in package e1071(Win*)
Hi!
After unziping the CRAN file e1071.zip
on my Win95 library directory, I start R and
type
>library(e1071)
After that, help commands of the e1071
functions work (i.e., help(read.pnm), BUT
some functions themselves are not available:
> read.pnm
Error: Object "read.pnm" not found
I've looked at the file library/R/e1071 with
an ascii editor and it seems like the functions
2004 May 31
1
e1071 build issue
** save image
Error in loadNamespace(i[[1]], c(lib.loc, .libPaths()), keep.source) :
There is no package called 'class'
Using 30 May 2004 developer version of R-1.9.0
trying URL `http://cran.r-project.org/src/contrib/e1071_1.4-0.tar.gz'
Content type `application/x-tar' length 325388 bytes
opened URL
.......... .......... .......... .......... ..........
..........
2004 Dec 16
2
reading svm function in e1071
Hi,
If I try to read the codes of functions in e1071 package, it gives me following error message.
>library(e1071)
> svm
function (x, ...)
UseMethod("svm")
<environment: namespace:e1071>
> predict.svm
Error: Object "predict.svm" not found
>
Can someone help me on this how to read the codes of the functions in the e1071 package?
Thanks.
Raj
2003 Apr 16
2
import data from Matlab & error msg when install package "e1071"
Hello,
I am trying to import data from Matlab..
when i looked up R documentation, it says, package "e1071" have command
(read.octave) to import data from octave.
but when I tried to install package by using:
install.packages("e1071");
I got the following message: ( BTW, my platform is linux version 2.4.18-3
my gcc is 2.96).
* Installing *source* package 'e1071' ...
2011 Jan 24
2
Masking commands - Permutation in gregmisc and e1071
I am using the function permutations from the package *gregmisc*. However, I
am also making use of the package *e1071*, which also contains a function
called permutations. I want to use the function permutations from the *
gregmisc* package, however, the other package is masking this function. This
happens both when I load the *e1071* package before *gregmisc* and when I
load *e1071* after I load
2001 Apr 03
2
Can't install "e1071"
I observed the same behavior as Edward this morning with R-1.2.2 on Red Hat
Linux 7.0. There appears to be a problem with the library in netpbm-9.5-5,
even after hunting down the missing shhopt.h that pbmplus.h is looking for.
I worked around the problem by compiling e1071 without pbm support (moved
pbm.c to pbm.c.bak).
Matt
Matthew R. Nelson, Ph.D.
Director, Information Systems
Esperion
2001 Apr 03
2
Can't install "e1071"
I observed the same behavior as Edward this morning with R-1.2.2 on Red Hat
Linux 7.0. There appears to be a problem with the library in netpbm-9.5-5,
even after hunting down the missing shhopt.h that pbmplus.h is looking for.
I worked around the problem by compiling e1071 without pbm support (moved
pbm.c to pbm.c.bak).
Matt
Matthew R. Nelson, Ph.D.
Director, Information Systems
Esperion
2006 Apr 08
3
The mysterious e1071
Hi,
I'm trying to use the svm function in R, but I can't find the e1071 package.
When I type library(e1071), I get the error message that the package
doesn't exist. I've searched all over the CRAN website, but I can't find
anything. Did it change names?
Thanks for your help,
Chelsea
2007 Jul 08
1
Problems with e1071 and SparseM
Hello all,
I am trying to use the "svm" method provided by e1071 (Version: 1.5-16)
together with a matrix provided by the SparseM package (Version: 0.73)
but it fails with this message:
> model <- svm(lm, lv, scale = TRUE, type = 'C-classification', kernel =
'linear')
Error in t.default(x) : argument is not a matrix
although lm was created before with
2001 Nov 20
2
segfault using svm from e1071 (PR#1178)
This could be a bug in the e1071 svm code, but maybe not -- I guess I'll
send it here anyway. It's reproducible.
> x <- seq (0.1,5,by=0.05)
> y <- log(x) + rnorm (x, sd=0.2)
> library(e1071)
> m <- svm (x,y)
Process R segmentation fault at Tue Nov 20 23:34:19 2001
> version
_
platform i686-pc-linux-gnu
arch i686
os
2006 Jan 17
0
Perl array conversion in R to compare plots.
Hello all,
I am using RSPerl package to display plots in R . I want to be able to compare
some data in boxplot and in histogram and in probplot ( from e1071 package)
- ( cumulative probability plot - normal)
I have a nested arrray of data ... from perl like the following
data[0][0] = (1,2,3,.....)
data[0][1] = ( 2,1,2,2,2,2,2) - could be different lengths...
etc ( could be more two sets to
2006 Jan 27
3
e1071: using svm with sparse matrices (PR#8527)
Full_Name: Julien Gagneur
Version: 2.2.1
OS: Linux (Suse 9.3)
Submission from: (NULL) (194.94.44.4)
Using the SparseM library (SparseM_0.66)
and the e1071 library (e1071_1.5-12)
I fail using svm method with a sparse matrix. Here is a sample example.
I experienced the same problem under Windows.
> library(SparseM)
[1] "SparseM library loaded"
> library("e1071")
2011 Oct 26
1
Where can I find cmeans {e1071} package?
Hello,
I need a Fuzzy C Means algorithm.
I found some documentation about cmeans {e1071} at
http://rss.acs.unt.edu/Rdoc/library/e1071/html/cmeans.html
Does someone knows where I can find it?
Thank you
Rui
[[alternative HTML version deleted]]
1998 May 21
1
R-beta: Problem instaling e1071
I was trying to install e1071 and the compilation failed. Can some of
you R gurus help me with this...
thanks
pedro
----
Installing package `e1071' ...
libs
gcc -g -fpic -I/usr/local/R/include -c pgm.c -o pgm.o
pgm.c:19: pgm.h: No such file or directory
make: *** [pgm.o] Error 1
cp: src-c/*.so: No such file or directory
R
DONE
-----
Pedro Vale Lima
Dep. Chemical Eng.
2010 Nov 23
5
cross validation using e1071:SVM
Hi everyone
I am trying to do cross validation (10 fold CV) by using e1071:svm method. I
know that there is an option (?cross?) for cross validation but still I
wanted to make a function to Generate cross-validation indices using pls:
cvsegments method.
#####################################################################
Code (at the end) Is working fine but sometime caret:confusionMatrix