Re: [R] why package ZIGP is not there anymore?

2013-03-08 Thread krusty the klown
Funnily, the bivpois package is no longer available too... -- View this message in context: http://r.789695.n4.nabble.com/why-package-ZIGP-is-not-there-anymore-tp4660663p4660726.html Sent from the R help mailing list archive at Nabble.com. __ R-help@

Re: [R] horizontal yaxis label

2013-03-08 Thread krusty the klown
Yes, it works, but I wonder if I can make the y title horizontal just setting any "hidden" parameter... -- View this message in context: http://r.789695.n4.nabble.com/horizontal-yaxis-label-tp802761p4660725.html Sent from the R help mailing list archive at Nabble.com. _

Re: [R] wireframe and margins

2012-12-24 Thread krusty the klown
Thanks, I'm setting now the mai parameter, but it is not so intuitive how it works with persp... -- View this message in context: http://r.789695.n4.nabble.com/wireframe-and-margins-tp4653838p4653865.html Sent from the R help mailing list archive at Nabble.com.

[R] wireframe and margins

2012-12-23 Thread krusty the klown
Hi everybody, I'm working with wireframe (and persp) functions, and I'm not able to set the margins between the 3d plot and the R window... It should be easy, innit?, but I can't find out which parameters I have to change... Any help? Thanks, ktk -- View this message in context: http://r.789695

Re: [R] Compiling Rgraphiz on Windows 7 64bit with R-2.13.0

2011-05-28 Thread krusty the klown
Thanks, I'm going to update it! -- View this message in context: http://r.789695.n4.nabble.com/Compiling-Rgraphiz-on-Windows-7-64bit-with-R-2-13-0-tp3493750p3557431.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org m

Re: [R] Compiling Rgraphiz on Windows 7 64bit with R-2.13.0

2011-05-27 Thread krusty the klown
lol, I'm having problems with texi2dvi as well... The Rdlatex file says: Hmm ... looks like a package Error in texi2dvi("Rd2.tex", pdf = (out_ext == "pdf"), quiet = FALSE, : pdflatex is not available Error in running tools::texi2dvi You may want to clean up by 'rm -rf C:/DOCUME~1/AB/IMPOST~1/

Re: [R] dbetagen function in mc2d package

2011-05-20 Thread krusty the klown
bbolker wrote: > > krusty the klown libero.it> writes: > >> I found this useful package for generalized beta, yet the function that >> calculates its density leaves me puzzled, especially when I plotted it: >> >> plot(function(y) dbetagen(y,4,1.2,min=0,m

[R] dbetagen function in mc2d package

2011-05-19 Thread krusty the klown
Hi all, I found this useful package for generalized beta, yet the function that calculates its density leaves me puzzled, especially when I plotted it: plot(function(y) dbetagen(y,4,1.2,min=0,max=40),xlim=c(0,40)) The area between the density curve and the x axis does not seem to measure 1!!! --

Re: [R] Status of the "bs" Package

2010-11-09 Thread krusty the klown
Perhaps there's a problem with the function rbs, that generates a random sample from the Birnbaum-Saunders distribution. The rgbs function (package gbs) does it better. Look at these code and results: > library(bs) > set.seed(1) > alpha<-0.17 > beta<-130 > x<-rbs(n=1000,alpha,beta) > # sample mea

Re: [R] Status of the "bs" Package

2010-11-09 Thread krusty the klown
Perhaps the problem stands on the rbs function which generates random samples from the Birnbaum-Saunders distribution: > library(bs) > set.seed(1) > x<-rbs(n=1000,alpha=0.5,beta=1.0) > # sample mean > mean(x) [1] 1.117749 > # expected value > beta*(1+alpha^2/2) [1] 2.125 > # so different! -- Vie

Re: [R] Status of the "bs" Package

2010-11-09 Thread krusty the klown
Hi, the package bs, version 1.0, is available. Yet, I've gote some problems with it, specifically with the maximum likelihood estimation of the parameters \alpha and \beta of Birnbaum-Saunders distribution. Let the following code run: library(bs) alpha<-1.5 beta<-0.5 n<-100 set.seed(1) x<-rbs(n,al

[R] homals (level numerical, scoremat and catscores...)

2009-11-26 Thread Krusty the Klown
Just run this code: library(homals) data(sleeping) sleeping res <- homals(sleeping[,2:4], level = c(rep("numerical",2),"nominal"), ndim=1) plot(sleeping[,2],res$scoremat[,,1][,1],axes=F) axis(1,sleeping[,2]) abline(h=res$scoremat[,,1][,1]) box() It looks strange, innit? There is something which

Re: [R] (exact) confidence bounds for lognormal parameters \mu and \sigma

2009-11-18 Thread Krusty the Klown
Sorry, probbaly it is...:blush: Krusty the Klown wrote: > > Anyway, the results do not provide confidence intervals, but mle estimates > and the hessian matrix, whose extradiagonal elements are null... is it > correct? > http://www.weibull.com/LifeDataWeb/confidence_bounds

Re: [R] (exact) confidence bounds for lognormal parameters \mu and \sigma

2009-11-18 Thread Krusty the Klown
/www.weibull.com/LifeDataWeb/confidence_bounds_log.htm http://www.weibull.com/LifeDataWeb/confidence_bounds_log.htm I will investigate... David Scott-6 wrote: > > Krusty the Klown wrote: >> Dear all, >> a statistical question: how can I compute exact confidence intervals fo

[R] (exact) confidence bounds for lognormal parameters \mu and \sigma

2009-11-17 Thread Krusty the Klown
Dear all, a statistical question: how can I compute exact confidence intervals for the lognormal distribution parameters? I found something only on www.weibull.com www.weibull.com . Does exist a package in R which can compute them? Thanks in advance, KTK -- View this message in context: http://

[R] how to modify a function in a R package calling other (invisible?) functions

2009-05-05 Thread Krusty the Klown
Hey hey kids! I'm facing this rough problem: I have to modify a function in a R package (namely, homals) but I'm not able to do it from the R interface, since this function recalls other functions which looks like invisible... I downloaded the source package from CRAN, http://cran.r-project.org/sr