dygraph是空白但xts对象有观察

问题描述 投票:0回答:1

问题的闪亮版本(原始问题):

我正在绘制一个基于xts对象的dygraph,它是基于2个输入过滤的结果:年龄和语言。

如果我将年龄滑块移动到每个设置为32的下限和上限并在输入框中输入“spanish”,则该图为空。但是,滤波的tibble和滤波的xts对象都显示1次观察。这种观察应该出现在情节中但不会出现。

我觉得我在这里遗漏了一些非常基本的东西,但我不能把手指放在上面。

enter image description here

---
title: "test"
output: 
  flexdashboard::flex_dashboard:
    theme: bootstrap
runtime: shiny
---

```{r setup, include=FALSE}
  library(flexdashboard)
  library(tidyverse)
  library(tibbletime)
  library(dygraphs)
  library(magrittr)
  library(xts)
  library(DT)
```

```{r global, include=FALSE}
# generate data
  set.seed(1)
  dat <- data.frame(date = seq(as.Date("2018-01-01"), 
                               as.Date("2018-06-30"), 
                               "days"),
                    sex = sample(c("male", "female"), 181, replace=TRUE),
                    lang = sample(c("english", "spanish"), 181, replace=TRUE),
                    age = sample(20:35, 181, replace=TRUE))
  dat <- sample_n(dat, 80)

```

Sidebar {.sidebar}
=====================================

```{r}
sliderInput("agerange", label = "Age", 
              min = 20, 
              max = 35, 
              value = c(20, 35),
              step=1)

selectizeInput(
  'foo', label = NULL, 
  choices = c("english", "spanish", "other"),
  multiple = TRUE
)
```

Plot
=====================================

```{r}
# all
  filtered <- reactive({
  req((dat$lang %in% input$foo) | is.null(input$foo))
  dat %>%
    mutate(new = 1) %>%
    arrange(date) %>%
    filter(if(is.null(input$foo)) (new==1) else (lang %in% input$foo)) %>%
    filter(age >= input$agerange[1] & age <= input$agerange[2])
  })

  totals <- reactive({  
  filtered <- filtered()
  filtered %>%
  # time series analysis
  tibbletime::as_tbl_time(index = date) %>% # convert to tibble time object
    select(date, new) %>%
    tibbletime::collapse_by("1 week", side = "start", clean = TRUE) %>%
    group_by(date) %>%
    mutate(total = sum(new, na.rm = TRUE)) %>%
    distinct(date, .keep_all = TRUE) %>%
    ungroup() %>%
    # expand matrix to include weeks without data
    complete(
      date = seq(date[1], date[length(date)], by = "1 week"),
      fill = list(total = 0)
    )
  })

# convert to xts
  totals_ <- reactive({
    totals <- totals()
    xts(totals, order.by = totals$date)
  })

# plot
  renderDygraph({

  totals_ <- totals_()
  dygraph(totals_[, "total"]) %>%
    dyRangeSelector() %>%
    dyOptions(useDataTimezone = FALSE,
              stepPlot = TRUE,
              drawGrid = FALSE,
              fillGraph = TRUE) 
  })
```

Filtered Tibble
=====================================

```{r}
  DT::renderDataTable({
    filtered <- filtered()
      DT::datatable(filtered, 
                    options = list(bPaginate = TRUE))
  })
```

Filtered xts
=====================================

```{r}
  DT::renderDataTable({
    totals_ <- totals_()
      DT::datatable(totals_[, c("date", "total")], 
                    options = list(bPaginate = TRUE))
  })
```

非闪亮版:

我将我的例子移出了闪亮的(我的实际用例)以隔离问题。

library(tidyverse)
library(tibbletime)
library(dygraphs)
library(magrittr)
library(xts)

set.seed(1)
dat <- data.frame(date = seq(as.Date("2018-01-01"), 
                             as.Date("2018-06-30"), 
                             "days"),
                  sex = sample(c("male", "female"), 181, replace=TRUE),
                  lang = sample(c("english", "spanish"), 181, replace=TRUE),
                  age = sample(20:35, 181, replace=TRUE))
dat <- sample_n(dat, 80)

totals <-
dat %>%
  mutate(new = 1) %>%
  arrange(date) %>%
  filter(lang=="spanish") %>% 
  filter(age>=32 & age<=32) %>%
  {. ->> filtered} %>%
  tibbletime::as_tbl_time(index = date) %>% # convert to tibble time object
  select(date, new) %>%
  tibbletime::collapse_by("1 week", side = "start", clean = TRUE) %>%
  group_by(date) %>%
  mutate(total = sum(new, na.rm = TRUE)) %>%
  distinct(date, .keep_all = TRUE) %>%
  ungroup() %>%
  # expand matrix to include weeks without data
  complete(
    date = seq(date[1], date[length(date)], by = "1 week"),
    fill = list(total = 0))

filtered

#        date  sex    lang age new
#1 2018-01-25 male spanish  32   1

# convert to xts
totals_ <- xts(totals, order.by = totals$date)

totals_

#           date         new total
#2018-01-21 "2018-01-21" "1" "1"  

# plot
dygraph(totals_[, "total"]) %>%
  dyRangeSelector() %>%
  dyOptions(useDataTimezone = FALSE,
            stepPlot = TRUE,
            drawGrid = FALSE,
            fillGraph = TRUE)
r xts dygraphs
1个回答
0
投票

我认为根本问题是dygraph不会绘制由1行组成的xts对象。因此,每当通过闪亮输入(或静态过滤器调用)设置的过滤器将数据集减少到1匹配(xts对象中的1行)时,绘图将为空。

(如果匹配为零,则在tibbletime步骤中,我的示例中会抛出一个错误,因为没有行。)

© www.soinside.com 2019 - 2024. All rights reserved.