跳至內容

File:Slope Field-modified.svg

頁面內容不支援其他語言。
這個檔案來自維基共享資源
維基百科,自由的百科全書

原始檔案 (SVG 檔案,表面大小:289 × 526 像素,檔案大小:364 KB)


摘要

描述
English: Slope field of dy/dx = 2*x^2 − x − 2. Green lines indicate the slope.
日期
來源 自己的作品
作者 Chen-Pan Liao

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)

授權條款

我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
Creative Commons CC-Zero 此檔案於創用 CC CC0 1.0 通用公有領域貢獻宣告下分發。
在此宣告之下分發本作品者,已依據各國著作權法,在全世界放棄其對本作品所擁有的著作權及所有相關相似的法律權利,從而將本作品貢獻至公有領域。您可以複製、修改、分發和演示該作品,用於任何商業用途,所有這些都不需要請求授權。

說明

添加單行說明來描述出檔案所代表的內容
Slope field of dy/dx = 2*x^2 − x − 2

在此檔案描寫的項目

描繪內容

image/svg+xml

檔案歷史

點選日期/時間以檢視該時間的檔案版本。

日期/時間縮⁠圖尺寸使用者備⁠註
目前2021年11月1日 (一) 11:20於 2021年11月1日 (一) 11:20 版本的縮圖289 × 526(364 KB)Chen-Pan Liaofixes
2021年11月1日 (一) 11:05於 2021年11月1日 (一) 11:05 版本的縮圖351 × 416(244 KB)Chen-Pan Liaofixes
2021年11月1日 (一) 11:02於 2021年11月1日 (一) 11:02 版本的縮圖385 × 430(244 KB)Chen-Pan Liaofixes
2021年11月1日 (一) 10:55於 2021年11月1日 (一) 10:55 版本的縮圖472 × 443(247 KB)Chen-Pan Liaofixes
2021年11月1日 (一) 10:50於 2021年11月1日 (一) 10:50 版本的縮圖472 × 443(181 KB)Chen-Pan LiaoUploaded own work with UploadWizard

下列頁面有用到此檔案:

詮釋資料