Displaying 6 results from an estimated 6 matches for "cressoni".
2007 Apr 08
2
Plot symbols dimensions
...ts (like the ones can be obtained with
SigmaPlot). I am not able to find the dimensions of a point. Parameters like cex make you able
to make it bigger or smaller but I need to know the exact dimension (in relative coordinates :
if my plot is 640x480 a dot plotted with cex=1.5 will be...)
Massimo Cressoni
2007 Mar 03
2
Sigmoidal fitting
...the start parameters.
I use nls. What I did (enclosed) seems to work well with many data points but if I want to fit small
vectors like :
pressure <- c(5,15,9,35,45)
gas <- c(1000,2000,3000,4000,5000)
it do not work. The help page says that it do no not work on zero residual data.
Massimo Cressoni
2007 Mar 09
2
Extracting the p of F statistics from lm
...<- summary(fitting)
Sfitting[10][1] gives the F value and the degrees of freedom but I am not able to get the
p value.
The function df should give a p value given a F but I am not
able to make it work.
I found only something about aov in the R help and I am not able
to make it work
Massimo Cressoni
2006 Nov 12
2
Compilation of R under UBUNTU Edgy
I am not able to compile R under ubuntu Edgy.
./configure error message is
configure: error: --with-x=yes (default) and X11 headers/libs are not available
I do not know which library is missing (I tried to install some X11 libs but were already on the system).
Massimo Cressoni
2007 Jul 12
1
Subsetting problem
...ppo2)
IPPOBIS <- IPPO[IPPO$ippo == "A" | IPPO$ippo == "B",]
wilcox_test(ippo2 ~ ippo,data=IPPOBIS,distribution=exact())
Error in check(itp) : 'object' does not represent a two sample problem
levels(IPPOBIS$ippo)
[1] "A" "B" "C"
Massimo Cressoni
2007 Apr 15
1
Expression for pedices
I know that this maybe a trivial question. I am not able to plot pedices in graph axes.
Instead I am able to plot different math symbols :
XLABEL <- expression(paste(cmH,lim(f(x), x %->% 0),"O PEEP"))
works well
XLABEL <- expression(paste(cmH,[2],"O PEEP"))
is considered a wrong expression.
Thanks