Michael Koohafkan

Results 46 issues of Michael Koohafkan

currently, `gather_set_data()` expects column indices or quoted names. It would be great if it could instead use tidyselect, which allow users to specify columns using `vars()`, `matches()`, etc. ```r d...

[`ggsubplot`](https://github.com/garrettgman/ggsubplot) has been [deprecated](https://cran.r-project.org/web/packages/ggsubplot/index.html) for years, but tidyverse support for [list columns](https://dplyr.tidyverse.org/reference/group_nest.html) and [custom annotations](https://ggplot2.tidyverse.org/reference/annotation_custom.html) in `ggplot2` make it pretty easy to mimic its functionality. However, there is some boilerplate...

feature

Some functions in the `tidyverse` don't work on `tbl_graphs`: ```r library(tidyverse) library(tidygraph) gr % mutate(stuff = paste(sample(letters[1:3], n(), replace = TRUE), 1:n(), sep = ";")) # extract node table gr...

Consider reading a blank Excel spreadsheet: ``` read_excel("blank.xlsx", "Sheet1", "A1:C1", na = "", col_names = FALSE) # A tibble: 0 x 0 ``` I would expect this to instead return...

bug

`duration` objects have a method for `as.numeric()` but not `as.integer()`. Using `as.integer()` on a `duration` object returns a value but does not respect the units argument (as can be passed...

I'm getting some weird behavior when trying to pass `...` arguments to anonymous functions, i.e., functions specified using `~`. I initially ran into this issue using `slider::slide2()` but I am...

When using "SQL Server" driver you can omit the `trusted_connection` argument and it will assume `trusted_connection = "True"` (although this is not documented): ```r dbConnect( odbc(), driver = "SQL Server",...

Graphs with the same vertices and edgelist are not considered identical when the vertex order of the argument `vertices` does not match the order that they occur in the edgelist:...

I have come across some subtle but dangerous inconsistencies with `rigraph` functions that take edge or vertex ids as an argument. These functions include `induced_subgraph`, `subgraph.edges`, and `add_edges`. Sometimes a...

I commonly work on multiple R projects at once, and thus commonly have multiple instances of VS open. Recently I have started getting errors when trying to access R's help...