File:Regressió lineal simple.svg

Summary

Description
Català: Regressió lineal simple de l'hemoglobina en l'edat (dades simulades)
Date
Source Own work
Author Pep Roca
SVG development
InfoField

Source code

The logo of R – programming language for statistical analysis
The logo of R – programming language for statistical analysis
This media was created with R (programming language for statistical analysis)Category:Images with R source code
Here is a listing of the source used to create this file.

Deutsch  English  +/−

DADES = data.frame(HB   = c(14.24, 14.39, 14.58, 13.57, 13.72, 13.35),
                   EDAT = c(36,    54,    46,    49,    56,    41))
svg("gra/reg_ls_diag_disp_edat_hb.svg")
plot(HB ~ EDAT, data = DADES, xlab= "Edat", ylab = "Hemoglobina", ylim=c(10, 20))
abline(lm(HB ~ EDAT, data = DADES))
dev.off()

Licensing

Pep Roca, the copyright holder of this work, hereby publishes it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
Attribution:
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-3.0#Regressió%20lineal%20simple.svgCategory:Self-published work
Category:Regression analysis
Category:CC-BY-SA-3.0 Category:Images with R source code Category:Regression analysis Category:Self-published work Category:Valid SVG created with R