Package 'rvisidata'

Title: Wrapper for 'Visidata', an Interactive Multitool for Tabular Data
Description: Open any data frame with 'visidata', a terminal-based spreadsheet application <https://www.visidata.org>.
Authors: Paul Klemm [aut, cre, cph] , Saul Pwanson [aut], Matthew Mark Strasiotto [ctb]
Maintainer: Paul Klemm <[email protected]>
License: MIT + file LICENSE
Version: 1.0.0
Built: 2024-11-11 04:29:22 UTC
Source: https://github.com/paulklemm/rvisidata

Help Index


Check if visidata is installed

Description

This function checks if visidata is installed on the system. If not, it stops the execution and prompts the user to install visidata.

Usage

check_vd()

Value

No return value. If visidata is not installed, the function stops execution.


Get visidata command depedning on the TMUX settings

Description

Get visidata command depedning on the TMUX settings

Usage

get_vd_cmd()

Value

visidata command as string


Open dataframe using visidata

Description

This function opens a dataframe in visidata. It first checks if jsonlite is installed, and if so, it uses jsonlite to write the dataframe to a temporary json file. If jsonlite is not installed, it writes the dataframe to a temporary csv file. It then opens the temporary file in visidata.

Usage

vd(dat)

Arguments

dat

The dataframe to open in visidata.

Value

The original dataframe, invisibly.