Created
August 1, 2022 18:15
-
-
Save jthomasmock/eb3a7cff76f15456a4b83d3f77f46968 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| format: | |
| html: | |
| theme: | |
| - litera | |
| execute: | |
| echo: false | |
| --- | |
| # Apache Arrow R questions on Stack Overfklow | |
| ## Stack Overflow | |
| Stack overflow questions tagged with `apache-arrow` + `r` | |
| ```{r} | |
| #| message: false | |
| #| column: page-right | |
| library(dplyr, warn.conflicts = FALSE) | |
| library(DT) | |
| tibble( | |
| issue = c( | |
| "The Boston Terrier is a breed of dog originating in the United States of America.", | |
| "The Boston Terrier is a breed of dog originating in the United States of America.", | |
| "The Boston Terrier is a breed of dog originating in the United States of America.", | |
| "The Boston Terrier is a breed of dog originating in the United States of America.", | |
| "The Boston Terrier is a breed of dog originating in the United States of America." | |
| ), | |
| comments = c(5, 4, 3, 2, 1), | |
| answers = c(0, 1, 2, 0, 1), | |
| accepted_answer = c(FALSE, TRUE, FALSE, FALSE, TRUE), | |
| days_since_last_activity = c(2, 3, 10, 12, 20) | |
| ) |> | |
| DT::datatable( | |
| colnames = c("Issue", "Comments", "Answers", "Accepted", "Days inactive"), | |
| options = list( | |
| autoWidth = TRUE, | |
| columnDefs = list( | |
| list(width = "100px", targets = c("comments", "answers", "accepted_answer", "days_since_last_activity")), | |
| list(width = "250px", targets = "issue") | |
| ) | |
| ) | |
| ) | |
| ``` | |
| # Gist URL https://gist.github.com/eb3a7cff76f15456a4b83d3f77f46968 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment