Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50640 views
1
# CoCalc Examples Documentation File
2
# Copyright: CoCalc Authors, 2015
3
# License: Creative Commons: Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
4
5
language: r
6
---
7
category: ["statistics", "modeling"]
8
---
9
title: Linear Model
10
descr: Linear Model Example
11
code: |
12
lm(y ~ x)
13
---
14
title: Nonlinear Model
15
descr: Nonlinear Model Example
16
code: |
17
lm(y ~ x)
18
---
19
title: ANOVA
20
descr: >
21
ANOVA of a linear model
22
code: |
23
lm1 <- lm(y ~ x)
24
anova(lm1)
25