David Kaplan
David Kaplan
Yes, will use the workaround. As a quick fix, perhaps you could add a spot-style marker at the top of the line? Just a thought...
I believe so, but I must admit that it has been long enough that I have forgotten the details.
If I set "theme variant" to "default", then the entire terminal has a white background (presumably because it inherits the light theme from the gnome desktop). I want a dark...
That is what I did, but I must admit that I prefer a deep, dark terminal over one that is lightened somewhat. It seems hard to believe that at the...
Thanks for this thoughtful and very helpful response. These different focuses make a lot of sense. As I said, I personally like that `stars` builds off of clearly identifiable and...
There may be other solutions to this issue (e.g., overwritting axis labels), but I finally decided to write my own Gantt function that labels projects by project quarters and years....
I was also looking for this feature. I am not much of an expert in mermaid, so this may be way off base, but one way I could see to...
I have the same problem and I have found that decrypting the file on the command line or evaluating by hand the corresponding chunk or line in the Rmarkdown script...
Given any RPostgres connection to a postgresql database, `con`, try the following: ```{r} x = dbGetQuery(con,"WITH a(v) AS (VALUES(ARRAY['a','b']::varchar[]),(ARRAY['abc','def','fgh']::varchar[])) SELECT * FROM a") class(x$v) ```
Ideally I would be able to treat the elements of `x$v` like vectors/arrays in R, extracting elements as needed, etc., but it isn't clear how to do this with a...