File:Linear regression plot with R.svg

Summary

Description
Deutsch: Beispiel eines einfachen Punkt-Diagramms und der Anpassungsgeraden der linearen Regression. Das Diagramm wurde mit folgendem R-Code erzeugt:
Date
Source Own work
Author Rosentod
SVG development
InfoField
Source code
InfoField

R code

Groesse <- c(176, 166, 172, 184, 179, 170, 176)
Gewicht <- c(65, 55, 67, 82, 75, 65, 75)

fit<-lm(Gewicht~Groesse)

svg("linear_regression_plot.svg")
plot(Gewicht~Groesse)
abline(fit)
dev.off()

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Linear%20regression%20plot%20with%20R.svg
Category:Self-published work Category:Media needing categories as of 3 May 2019#Linear%20regression%20plot%20with%20R.svg Category:All media needing categories as of 2019#Linear%20regression%20plot%20with%20R.svg
Category:All media needing categories as of 2019 Category:CC-Zero Category:Media needing categories as of 3 May 2019 Category:Self-published work Category:Valid SVG created with R code