Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/r/basics.sagews
Views: 930
R Basics
Just a demo, how R can be called from Sage to do something useful.
Note: every block of code starts with %r
to switch to R-mode. Use %default_mode r
in a single bock to switch r
to be the default.
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.000 2.500 3.000 3.091 3.500 6.000
1
4
- 5
- 2
- 3
- -1
- -1
- -1
- 2
- -5
- -4
- -5
- 0
- -5
- -3
- 2
- 5
- 1
- 5
- 5
- 2
- 3
- 3
- 3
- 5
- -2
- -1
- -1
- -5
- 2
- 3
- -5
Min. 1st Qu. Median Mean 3rd Qu. Max.
-5.00 -1.75 1.50 0.40 3.00 5.00

Linear Regression
Call:
lm(formula = Y ~ X)
Residuals:
Min 1Q Median 3Q Max
-10.3505 -3.1704 -0.1131 3.0550 14.0648
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -1.3877 0.5326 -2.606 0.0106 *
X 1.0741 0.1821 5.900 5.2e-08 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 5.323 on 98 degrees of freedom
Multiple R-squared: 0.2621, Adjusted R-squared: 0.2546
F-statistic: 34.81 on 1 and 98 DF, p-value: 5.199e-08
It is also possible to plot
the R-object lmobj
to learn more about the linear regression.



