Displaying 4 results from an estimated 4 matches for "nagat".
Did you mean:
sagat
2004 Oct 17
2
Plotcorr: colour the ellipses to emphasize the differences
...w can one use this setup for other datasets? For example I have a dataset with 15 variables.
I would also like to know if it is possible to use some other scale of colors instead of cm.colors, rainbow, heat.colors, terrain.colors, topo.colors. I would like to have positive correlations in blue and nagative ones in red spectrum of colors. Is it possible?
Thank you!
# Colour the ellipses to emphasize the differences
corr.mtcars <- cor(mtcars)
ord <- order(corr.mtcars[1,])
xc <- corr.mtcars[ord, ord]
plotcorr( xc, col=cm.colors(11)[5*xc + 6])
With regards, Lep pozdrav
Gregor GORJANC
2013 Oct 11
6
puppet class if
Hello,
I created puppet class and I want the file operation to be executed on all
servers but not on server with hostname "''server1.domain.com". I tried this
class, but it does not work. Is there any other way? Thanks
class test {
if $hostname != ''server1.domain.com'' {
file { "/etc/ntp.conf":
owner
2013 Jun 07
0
error running mvabund package
...e)
plot(cplflorabund~vegtype) #there is a column called "treatment", and
another called "block"
plot.mvabund(cplflorabund)
##Fitting predictive models
transect=as.factor(transect$transect)
flormat=as.matrix(florabund)
abund.nb <-manyglm(flormat~transect*vegtype, family="nagative.binomial")
predict(abund.nb, type= "response")
##Checking Model Assumptions
plot(abund.nb)
meanvar.plot(flormat~transect, col=as.numeric (vegtype)) #direct plot of
mean-variace relationship
anova(abund.nb, p.uni="adjusted")
It's after running the last code l...
2004 Oct 17
1
FW: Plotcorr: colour the ellipses to emphasize the differences
...anc at bfro.uni-lj.si> wrote:
[removed old stuff]
>>I would also like to know if it is possible to use some other scale of
>> colors instead of cm.colors, rainbow, heat.colors, terrain.colors,
>> topo.colors. I would like to have positive correlations in blue and
>> nagative ones in red spectrum of colors. Is it possible?
> The source of cm.colors is visible (just type "cm.colors" and it will
> be printed). You could write your own function to change the scale to
> blue through red instead of cyan through magenta by changing a few
> constants...