Daniel Possenriede

Results 62 issues of Daniel Possenriede

Please add a settings entry to set the date-format for "updated" and "created" info in the Gists tree. ![grafik](https://user-images.githubusercontent.com/1423562/139830055-269e40d7-a533-43a7-9869-33d16e970fdc.png)

The `hp` column is used twice in the query and should be quoted in both places for consistency.

This adds the `df_print` argument to `confluence_document()` (cf. [`rmarkdown::output_format()`](https://rmarkdown.rstudio.com/docs/reference/output_format.html)), first and foremost to facilitate easy `kable()`/markdown output tables. `df_print` is passed down to [`rmarkdown::md_document()`](https://rmarkdown.rstudio.com/docs/reference/md_document.html). Before I push this any further,...

This ```` --- title: "Test `code_folding`" output: conflr::confluence_document: space_key: [my_space] parent_id: [my_parent_id] code_folding: hide update: true --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## Test `code_folding` ```{r cars} summary(cars)...

We are currently relatively silent on whether the geocoding services utilize open or proprietary data. That's like - as someone put it - comparing R to Stata without mentioning that...

It would be nice to have the same column guessing with the same syntax as in readr. https://github.com/hadley/readr/releases/tag/v1.0.0

feature
col_types

Do you support Firefox for Android with your addon? The [changelog](https://github.com/0x6b/copy-selection-as-markdown/blob/master/CHANGELOG.md#070---2019-01-09) "set minimum version to Firefox 57 (Android is not tested though)" seems to suggest that you might. But when...

enhancement

> last 5 R releases Does 3.4.x need to be bumped as well?

This allows quoting columns with `Id()` and `dbQuoteIdentifier()` and fixes the quoting of a schema, closes #254. I've added tests for `dbQuoteIdentifier()` and `dbUnquoteIdentifier()` from [RPostgres](https://github.com/r-dbi/RPostgres/blob/c0aca74c0621bea663a3d7f4b20648ca5020a16e/tests/testthat/test-dbQuoteIdentifier.R), too. ``` r library(RMariaDB)...

Like [RPostgres](https://github.com/r-dbi/RPostgres/issues/263), RMariaDB does not allow to quote column identifiers (the last example of [`glue::glue_sql()`](https://glue.tidyverse.org/reference/glue_sql.html) relies on this feature). ``` r library(RMariaDB) con - Session info --------------------------------------------------------------- #> setting value...

feature