Designing Experimental Protocols
Example Prompt:
Example Response:
Related Tasks:
Creating Data Collection Templates
Example Prompt:
Example Response:
Related Tasks:
Statistical Analysis of Experimental Data
Example Prompt:
Example Response:
data <- read.csv('path/to/your/dataset.csv')
str(data)
anova_result <- aov(response ~ group, data = data)
summary(anova_result)
TukeyHSD(anova_result)
library(ggplot2)
ggplot(data, aes(x = group, y = response)) + geom_boxplot() + theme_minimal()
Related Tasks:
Writing Research Reports
Example Prompt:
Example Response:
Related Tasks:
Developing Quality Control Checklists
Example Prompt:
Example Response:
Related Tasks: