Dean Attali
Dean Attali
Create a directory named `assets` and don't place any files inside it. Then run `dash::Dash$new()` to see the following messages: ``` Warning messages: 1: In max.default(numeric(0), na.rm = TRUE) :...
Using a simple date such as `2019-01-17` does not put place the item at midnight when the day begins, instead it goes a few hours back. Adding a space (`2019-01-17...
If you initialize a timeline with no options, and then use `setOptions({editable:true})`, any items that were created on initialization are not editable (cannot be moved or deleted). If the timeline...
If I have the following data: ``` data
There was a [blog post](http://motioninsocial.com/tufte/) showing how to do many Tufte-style plots in R. The author included `ggMarginal` but noted that it cannot be used to make dotplots eg ...
Related to https://github.com/r-lib/roxygen2/issues/1026 This is not a typical usecase, but I'm curious to see if you think it should be supported. In a package, I have an R6 class `Foo`...
In the [quick start](https://github.com/ademilter/bricklayer/wiki/Quick-Start) page, there's an example that shows the following CSS: ``` @media screen and (min-width: 1200px) { ... } @media screen and (min-width: 768px) { ... }...
(Duplicate of https://github.com/ycphs/openxlsx/issues/304 but it was closed prematurely and I don't have the option of commenting+reopening). To continue from the last comment there: @JanMarvin I think you misunderstood the issue....
It'd be nice to be able to do something like ``` library(shiny) library(bsplus) ui % bs_append(title = "bar", content = "hello world", selected = FALSE) ) server
If I create a simple accordion like this: ``` library(shiny) ui % bs_append("bar", "hello world") ) server