Quantcast
Channel: Recent Questions - Stack Overflow
Viewing all articles
Browse latest Browse all 12111

Why does my ANOVA output not have F or p-value?

$
0
0

I don't know how to show you what my dataset looks like in code but this is what I made in excel and imported into R:enter image description here

I am trying to run a two-way anova with this code:

`dfe8.1 <- read.table("e8.1.txt", header=T)

colnames(dfe8.1)

diet<-as.factor(dfe8.1$source)

cal_lev<-as.factor(dfe8.1$calories_rank)

response<-dfe8.1$calories

aovfit_e8.1<-aov(response~diet*cal_lev)

summary(aovfit_e8.1)`

output:

> summary(aovfit_e8.1)Df Sum Sq Mean Sqdiet          2  52.27   26.13cal_lev       2 314.83  157.41diet:cal_lev  4 137.36   34.34'''

Why is there no F value or p-value?

Sorry for not showing data or output in code... I don't know how to do that in stack overflow.


Viewing all articles
Browse latest Browse all 12111

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>