Package: tidytidbits 0.3.2

Marcel Wiesweg

tidytidbits: A Collection of Tools and Helpers Extending the Tidyverse

A selection of various tools to extend a data analysis workflow based on the 'tidyverse' packages. This includes high-level data frame editing methods (in the style of 'mutate'/'mutate_at'), some methods in the style of 'purrr' and 'forcats', 'lookup' methods for dict-like lists, a generic method for lumping a data frame by a given count, various low-level methods for special treatment of 'NA' values, 'python'-style tuple-assignment and 'truthy'/'falsy' checks, saving to PDF and PNG from a pipe and various small utilities.

Authors:Marcel Wiesweg [aut, cre]

tidytidbits_0.3.2.tar.gz
tidytidbits_0.3.2.tar.gz(r-4.5-noble)tidytidbits_0.3.2.tar.gz(r-4.4-noble)
tidytidbits_0.3.2.tgz(r-4.4-emscripten)tidytidbits_0.3.2.tgz(r-4.3-emscripten)
tidytidbits.pdf |tidytidbits.html
tidytidbits/json (API)
NEWS

# Install 'tidytidbits' in R:
install.packages('tidytidbits', repos = 'https://cloud.r-project.org')

On CRAN:

Conda:r-tidytidbits-0.3.2(2025-03-25)

This package does not link to any Github/Gitlab/R-forge repository. No issue tracker or development information is available.

2.48 score 2 packages 607 downloads 78 exports 25 dependencies

Last updated 3 years agofrom:629ef60315. Checks:2 OK, 1 NOTE. Indexed: yes.

TargetResultLatest binary
Doc / VignettesOKMar 12 2025
R-4.5-linuxNOTEMar 12 2025
R-4.4-linuxOKMar 12 2025

Exports:%=%add_prop_testall_or_all_naany_or_all_naappend_objectare_trueas_formatted_numberas_formatted_p_valueas_percentage_labelcategorical_test_bycontingency_table_as_matrixcontingency_table_bycount_atcount_bydinAdinA_formatdinA_heightdinA_widthdinAFormatdinAHeightdinAWidthequal_including_naeval_unquotedexpression_listfalsyfirst_non_nasfirst_non_nas_atfirst_notfirst_not_nafirst_which_non_na_atfirst_which_not_naformat_numbers_atformat_p_values_atginvalidinvert_value_and_nameslocal_variableslocalVariableslookuplookup_chrlookup_dbllookup_function_from_dictlookup_intlookup_lgllookup_numlumplump_rowsname_containsnamednamed_paletteorder_factor_byorderer_function_from_sorted_vectorspluck_vectorprepare_directoryprepare_pathprepend_objectprint_deparsedquosure_listrename_factorrename_reorder_factorreplace_sequential_duplicatessave_pdfsave_pngsequential_duplicatessource_variablessourceVariablesstr_locate_matchsymbol_as_quosuresymbol_string_listsyntactically_safetrue_or_natruthyvalidvalue_containswhich_non_nawith_namewith_name_containingwith_value_containing

Dependencies:clicpp11dplyrextrafontextrafontdbfansiforcatsgenericsgluelifecyclemagrittrpillarpkgconfigpurrrR6rlangRttf2pt1stringistringrtibbletidyrtidyselectutf8vctrswithr

Citation

To cite package ‘tidytidbits’ in publications use:

Wiesweg M (2022). tidytidbits: A Collection of Tools and Helpers Extending the Tidyverse. R package version 0.3.2, https://CRAN.R-project.org/package=tidytidbits.

Corresponding BibTeX entry:

  @Manual{,
    title = {tidytidbits: A Collection of Tools and Helpers Extending
      the Tidyverse},
    author = {Marcel Wiesweg},
    year = {2022},
    note = {R package version 0.3.2},
    url = {https://CRAN.R-project.org/package=tidytidbits},
  }

Readme and manuals

Purpose

The goal of tidytidbits is to complement the environment provided by the tidyverse packages with a set of higher-level functions within the scope of data analysis and plotting.

Installation

Install from CRAN:

install.packages("tidytidbits")

Or install the latest git version from bitbucket:

devtools::install_bitbucket("mwiesweg/tidytidbits")

Components

The following areas are covered:

  • methods designed for use in a dplyr pipeline
    • formatting columns: format_numbers_at, format_p_values_at, and the corresponding generic tools as_formatted_number, as_formatted_p_value, as_percentage_label
    • adding data analysis results as new columns: count_by, add_prop_test
    • cross tabulation in a pipeline: cross_tabulate
    • lumping rows of a data frame by a count: lump_rows, and the corresponding generic tool lump
    • appending and prepepnding in a pipe with different semantics: append_object, prepend_object
    • lower-level pipeline tools: add_summary, add_summary_by, execute_if, execute_in_pipeline, interlude
  • convenience methos to rename and reorder a factor: rename_reorder_factor, rename_factor, order_factor_by
  • vectorised and non-vectorised methods implementing usefuls notions about NA and logical values: all_or_all_na, any_or_all_na, are_true, equal_including_na, falsy, invalid, true_or_na, truthy, valid
  • vectorised methods dealing with data frame columns potentially containing NA values: first_non_nas, first_not, first_not_na, first_which_not_na, which_non_na
  • a vectorised lookup method for use with dictionary-like vectors: lookup and its type-specific variants
  • some accessors for use with purrr's pluck or the additionally provided pluck_vector: name_contains, named, value_contains
  • generic tools: invert_value_and_names, str_locate_match
  • dealing with sequential duplicates: sequential_duplicates, replace_sequential_duplicates
  • for plotting:
    • conveniently saving a plot from a pipe: save_pdf, save_png
    • convenience methods for safe directory generation: prepare_path, prepare_directory
    • convenience method giving frequently used paper sizes: dinA_format, dinA_height, dinA_width
    • convenience method to create a named palette: named_palette and for creating a qualitative palette with many entries: iwanthue_palette
  • a notion of having a method which provides its local variables for reuse in other methods: local_variables and the corresponding source_variables
  • a python-style tuple-assignment implementation g(a, b) %=% function_returning_vector_of_two_elements()
  • some low-level methods utilizing rlang features: eval_unquoted, expression_list, print_deparsed, quosure_list, symbol_as_quosure, symbol_string_list, syntactically_safe

Help Manual

Help pageTopics
Add results of prop.test to data frameadd_prop_test
All() giving NA only if all values are NAall_or_all_na
Any() giving NA only if all values are NAany_or_all_na
Appending in a pipe, never unlistingappend_object
Vectorised conversion to logical, treating NA as Falseare_true
Format numeric value for outputas_formatted_number
Formatting p valuesas_formatted_p_value
Format as percentage for outputas_percentage_label
Categorical test in a pipecategorical_test_by
Convert contingency table to classical R matrixcontingency_table_as_matrix
Create data frame formed like a contingency-tablecontingency_table_by
Count by multiple variablescount_at
Count according to groupingcount_by
The DIN A paper formatsdinA dina dinAFormat dinAHeight dinAWidth dinA_format dinA_height dinA_width
Compare vectors, treating NA like a valueequal_including_na
Execute code after tidy evaluationeval_unquoted
Extract symbols from an expression of symbols and operatorsexpression_list quosure_list symbol_string_list
Row-wise first value which is not NAfirst_non_nas
Row-wise first value that is not NAfirst_non_nas_at
First argument that does not equal a given valuefirst_not
First argument that is not NAfirst_not_na
Row-wise first index of column that is not NAfirst_which_non_na_at
First which() is not nafirst_which_not_na
Format numeric columns for displayformat_numbers_at
Format numeric columns for displayformat_p_values_at
Ordering function: identity orderidentity_order
A notion of valid and invalidinvalid valid
Inverting name and valueinvert_value_and_names
"Variable generating" functionslocalVariables local_variables sourceVariables source_variables
Lookup in a dictionarylookup lookup_chr lookup_dbl lookup_int lookup_lgl lookup_num
Creating a lookup function from dictionarylookup_function_from_dict
Generic lumpinglump
Lump rows of a tibblelump_rows
Named color palettenamed_palette
Reorder a factororder_factor_by
Orderer function for complex sortingorderer_function_from_sorted_vectors
Pluck with simplified return valuepluck_vector
Directory creationprepare_directory
Directory creation and file path concatenationprepare_path
Prepending in a pipe, never unlistingprepend_object
Print deparsed languageprint_deparsed
Rename a factor.rename_factor
Rename and reorder a factor.rename_reorder_factor
Replace sequential duplicatesreplace_sequential_duplicates
Save plot as PDFsave_pdf
Save plot as PNGsave_png
Detect sequential duplicatessequential_duplicates
Combine str_match and str_locatestr_locate_match
Make quosure from symbolsymbol_as_quosure
Syntactically safe namessyntactically_safe
Test for logical true or NAtrue_or_na
A python / javascript-like "truthy" notionfalsy truthy
Infix operator for python-style tuple assignment%=% g tuple_assignment
Get indices of non-NA valueswhich_non_na
Slice by namenamed name_contains with_name with_name_containing
Slice by valuevalue_contains with_value_containing