Jump to content

File:Plot regression women.svg

From Wikipedia, the free encyclopedia

Original file(SVG file, nominally 289 × 289 pixels, file size: 6 KB)

Summary[edit]

Updated same figure (Image:Plot regression women.jpg), which was in JPEG format. This figure was created in R:

library(women)
n <- nrow(women)
x <- women$height
y <- women$weight
X <- cbind(rep(1, n), x, x^3)
beta <- solve( t(X) %*% X ) %*% t(X) %*% y
library(RSvgDevice)
devSVG("Plot_regression_women.svg",4,4)
plot(weight ~ height, women, main="US women weight vs. height",
     xlab="Height (in)", ylab="Weight (lbs)")
lines(x, beta[1] + beta[2]*x + beta[3]*x^3, col=2)
dev.off()

Licensing[edit]

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current20:00, 21 January 2007Thumbnail for version as of 20:00, 21 January 2007289 × 289 (6 KB)Mwtoews (talk | contribs)Updated same figure (Image:Plot regression women.jpg), which was in JPEG format. This figure was created in R: library(women) X <- cbind(rep(1,nrow(women)),women$height,women$height**3) beta <- solve(t(X)%*%X) %*% t(
No pages on the English Wikipedia use this file (pages on other projects are not listed).

Metadata