Skip to content

Instantly share code, notes, and snippets.

@Nicolabo
Created February 14, 2015 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nicolabo/1800fe3652955e5ed0f7 to your computer and use it in GitHub Desktop.
Save Nicolabo/1800fe3652955e5ed0f7 to your computer and use it in GitHub Desktop.
library(shiny)
library(ggvis)
library(dplyr)
#setwd("~/GitHub/MOOC/4_modelowanie/serialeIMDB/")
load("serialeIMDB.rda")
shinyServer(function(input, output) {
mySerial <- reactive({
serialeIMDB[serialeIMDB$serial == input$serial, ]
})
ocena <- function(data){
if(is.null(data)) return(NULL)
if (is.null(data$id)) return(NULL)
df <- isolate(mySerial())
df2 <- df[df$id == data$id, ]
paste0("<b>",df2$nazwa,"</b>",
"<br>ocena: ",as.character(df2$ocena),
"<br>",df2$id)
}
mySerial %>%
ggvis(x = ~id, y = ~ocena, fill = ~sezon) %>%
# ewentualnie group_by(sezon)
layer_text(text := ~nazwa, opacity=0, fontSize:=1) %>%
layer_smooths(stroke:="grey", strokeDash:=2) %>%
layer_points(size := 100,
size.hover := 240,
fillOpacity := 0.5,
fillOpacity.hover := 0.9,
key := ~id) %>%
hide_legend("fill") %>%
hide_axis("x") %>%
set_options(width = 640,padding = padding(10, 10, 50, 50)) %>%
add_axis("x", title = "Numer odcinka",
properties = axis_props(
grid = list(stroke = "white")
)) %>%
add_tooltip(ocena,"hover") %>%
layer_model_predictions(model = "lm") %>%
bind_shiny("serialPlot")
#--------------------------------------------------------------------------------------------------------------------
output$opis = renderUI({
ser <- mySerial()
napis <- paste0("http://www.imdb.com/title/",ser$imdbId[1],"/epdate?ref_=ttep_ql_4")
wsp <- lm(ocena~id, ser)$coef
HTML("Dane o ocenach serialu <b>",as.character(ser$serial[1]),"</b> można pobrać ze strony <br/> <a href='", napis, "'>",napis,"</a><br><br>",
"Trend dla tego serialu opisuje prosta o równaniu: <b>", signif(wsp[1], 2), ifelse(wsp[2] > 0, " + ", " "), signif(wsp[2], 2),"*odcinek</b>")
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment