search for: symmary

Displaying 3 results from an estimated 3 matches for "symmary".

Did you mean: summary
2003 Nov 02
1
Boxplot with full x-range
...pen. In other words, I want ALL interval to be drawn, including the empty ones. Example scenario: data.dat: 0.1 5 0.15 4.5 0.3 2 0.31 2.2 0.5 1 0.55 1.1 0.56 1.15 0.7 0.5 0.9 0.1 > mydata <- read.table("data.dat") > attach(mydata) > cats = cut( V1, breaks=(0:10)*.1) > symmary( cats ) (0,0.1] (0.1,0.2] (0.2,0.3] (0.3,0.4] (0.4,0.5] (0.5,0.6] (0.6,0.7] (0.7,0.8] 1 1 1 1 1 2 1 0 (0.8,0.9] (0.9,1] 1 0 ## notice two intervals with zero elements > boxplot( V2 ~ cats ) ## this draws t...
2008 Feb 13
1
lmer: Estimated variance-covariance is singular, false convergence
...uot;Cracks" and tried to exclude some of them in different ways (as all transects without vegetation cover), but this did not help. The current version deals with all transects wich have at least two plots with crevices. The correlation Intercept/Cracks ist -1.000 for both models. I attachet a symmary of the used data.frame, a randomly selected subset and the summarys of cracks.lmer and cracks.lmer1 in a *.txt file (modified with kate). Some xyplots are attached as *.png. (The error message on the plots means "Error using packet 5, NA/NaN/Inf in externem Funktionsaufruf", excluding the...
2010 Aug 27
2
Nestad ANOVA with random Factors
...with three factors: Day, Area and Plot and the dependent variable is density. The factors Day and Area are fixed while Plot is random, factor Area is nested in factor Day, and factor Plot is nested in Area. I can do it using aov by: mod1<-aov(density~ day + day%in%area + day%in%area%in%plot) symmary(mod1) Getting this result: Analysis of Variance Table Response: total Df Sum Sq Mean Sq F value Pr(>F) day 2 1789.8 894.91 55.5576 < 2e-16 *** day:area 15 4658.8 310.59 19.2818 < 2e-16 *** day:area:plot 72 1715.7 23.83 1.4793 0.01145 * Resi...