原始檔案 (SVG 檔案,表面大小:289 × 526 像素,檔案大小:364 KB)
摘要
R code
library(ggplot2)
f <- function(x, beta0) {
(1 / 3) * x ^ 3 - (1 / 2) * x ^ 2 - 2 * x + beta0
}
d <-
expand.grid(x = seq(-4, 4, 0.01), Intercept = c(-4, 0, 4))
d$y <- with(d, f(x, Intercept))
d.slope <-
expand.grid(x = seq(-4, 4, 0.5),
y = seq(-10, 10, 0.5))
d.slope$slope <- with(d.slope, x ^ 2 - x - 2)
d.slope$angle <- with(d.slope, atan(slope) / pi * 180)
ggplot(d, aes(x, y)) +
geom_hline(yintercept = 0) +
geom_vline(xintercept = 0) +
geom_text(data = d.slope,
aes(angle = angle, label = "—"),
color = 3,
size = 2.5) +
geom_line(aes(color = as.factor(Intercept), group = as.factor(Intercept), size = as.factor(Intercept))) +
scale_x_continuous("x", breaks = seq(-5, 5, 1)) +
scale_y_continuous("y", breaks = seq(-50, 50, 1), limits = c(-8, 6)) +
theme(panel.background = element_blank()) +
theme(text = element_text(size = 12)) +
theme(legend.position = "top") +
scale_color_manual(values = c('green', 'red', 'blue')) +
scale_size_manual(values = 1:3) +
guides(size = guide_legend("Intercept"), color = guide_legend("Intercept")) +
coord_fixed() +
windows(5, 6)
授權條款
我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
|
此檔案在創用CC CC0 1.0 通用公有領域貢獻宣告之下分發。
|
在此宣告之下分發本作品者,已依據各國著作權法,在全世界放棄其對本作品所擁有的著作權及所有相關相似的法律權利,從而將本作品貢獻至公有領域。您可以複製、修改、分發和演示該作品,用於任何商業用途,所有這些都不需要請求授權。
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse
|
Slope field of dy/dx = 2*x^2 − x − 2
檔案歷史
檔案用途
此檔案中包含擴展的資訊。這些資訊可能是由數位相機或掃描器在建立時或數位化過程中所加入。
如果此檔案的來源檔案已被修改,一些資訊在修改後的檔案中將不能完全反映出來。