#4,487 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Getting Started with R: An Introduction for Biologists

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Getting Started with R: An Introduction for Biologists. Here are the top ones.

Getting Started with R: An Introduction for Biologists
Buying options
View on Amazon.com
or
    Features:
  • Used Book in Good Condition
Specs:
Height6.6 Inches
Length9.3 Inches
Number of items1
Weight0.56879263596 Pounds
Width0.4 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Getting Started with R: An Introduction for Biologists:

u/TheToiletDuck ยท 7 pointsr/labrats

Good for you!

Here are some beginner tutorials written by students at my work
https://ourcodingclub.github.io/tutorials/

Also this book is excellent!

https://www.amazon.co.uk/Getting-Started-R-Introduction-Biologists/dp/0199601623

Try to learn ggplot2, it's easier than the standard graphics

ANOVA is built into R but I you'll need to run an ANOVA on a linear or generalised linear model. It's covered in the tutorials I linked.

For example (this won't run it's just an example of code)

Model1 = lm(height ~ sex, data = datafile)

Null.model = lm(height ~ 1, data = datafile)

Model.test = anova(Model1, Null.model, test = "Chisq")

Summary(Model.test)



For a graph it depends on how your data is laid out but you could feed it raw data and plot the means with error bars in ggplot2 with stat_summary like so

ggplot(data = datafile, aes(x=sex, y=height, colour=sex))+

stat_summary(geom="bar", fun.y=mean, position=position_dodge(width=0.95))+

stat_summary(fun.data=mean_se,position=position_dodge(0.95),geom="errorbar")

Hope that helps.


Don't be put off, learning r will make future stuff so much easier. I barely touch excel now