-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplots.R
77 lines (26 loc) · 1.12 KB
/
plots.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
py <- plotly()
model <- lm(fc ~ of + factor(method), data=long_df)
grid <- with(long_df, expand.grid(
of = seq(min(of), max(of), length = 3),
method = levels(factor(method))
))
grid$fc <- stats::predict(model, newdata=grid)
viz2 <- qplot(of, fc, data=long_df, colour=factor(method)) +
geom_line(data=grid)
out <- py$ggplotly(viz2, kwargs=list(filename="gg-line-scatter", fileopt="overwrite"))
plotly_url <- out$response$url
py <- plotly()
model <- lm(mpg ~ wt + factor(cyl), data=mtcars)
grid <- with(mtcars, expand.grid(
wt = seq(min(wt), max(wt), length = 20),
cyl = levels(factor(cyl))
))
grid$mpg <- stats::predict(model, newdata=grid)
viz2 <- qplot(wt, mpg, data=mtcars, colour=factor(cyl)) +
geom_line(data=grid)
out <- py$ggplotly(viz2, kwargs=list(filename="gg-line-scatter", fileopt="overwrite"))
plotly_url <- out$response$url
pltpspec <- ggplot(long_df,aes(y = fc, x =reof,colour=method,shape=method)) +
geom_point() + geom_smooth(method="lm", fill=NA) +
coord_cartesian(xlim = c(0, xmax+0.25), ylim = c(0, ymax+0.25)) +
geom_abline(group=1, colour="grey")