Hello everyone! welcome to my tutorial page hosted on GitHub. Here, I have complied some basic tutorial of statistical and phylogenetic analysis. Statistical analysis can be execute in R statistical programming. Different free softwares can be used for phylogenetic analysis.
library(“MASS”) print(str(Cars93))
car.data=data.frame(Cars93$AirBags, Cars93$Type)
car.data=table(Cars93$AirBags, Cars93$Type) print(car.data)
print(chisq.test(car.data))