Hope
Hope
In addition, if `db_save_query` could work, is there any way to operate data from different connections?
I think writetext could serve for those who want to batch clean their text, I think txt and csv both might be important, while doc and docx also has their...
Thank you for the prompt feedback. For the first suggestion, I mean the package could wrap a function so that when we have data.frame like: ``` data("bacteria") head(bacteria) ## value...
That is exactly what I mean, and expect for the `geom_packcircles` to emerge in a new package or in `ggplot2`. And the interative feature is awesome too, hope it could...
A certain need is, how could I select the columns I want according to the column names, e.g. select all columns ends with number or any regular expression. Thanks.
I've found a way for your reference, maybe it could help the design of the function. ``` library(fst) library(tidyverse) fst("path_name") -> ft ft[,names(ft) %>% str_detect("pattern1 | pattern2 | ...")] %>%...
Thank you for the feedback. Acutually I am not quite satisfied with this solution, I have some other ideas in my mind. Below are the verbs I think should be...
Actually, the current state is quite good, good enough that while I want to write a `tidyfst` for it but stop after I use `fst` further (the API name could...
Some prototype of my functions (that are not all working, but could reflect some thinking): ``` library(fst) library(stringr) library(magrittr) parse_fst = fst::fst slice_fst = function(ft,numeric_vector){ ft[numeric_vector,] } select_fst = function(ft,...){...
Currently there are only two issues I am facing: Selecting single column returns a sing class vector but not a data.frame;2.`fst` is used to deal with big data, perhaps data.table...