### Install ggflowchart from CRAN Source: https://github.com/nrennie/ggflowchart/blob/main/README.md Install the package from CRAN using this command. ```r install.packages("ggflowchart") ``` -------------------------------- ### Install ggflowchart Development Version from GitHub Source: https://github.com/nrennie/ggflowchart/blob/main/README.md Install the development version of the package from GitHub. ```r remotes::install_github("nrennie/ggflowchart") ``` -------------------------------- ### R CMD Check Note: HTML version of manual validation Source: https://github.com/nrennie/ggflowchart/blob/main/cran-comments.md This note occurs when R CMD check attempts to validate the HTML version of the manual but cannot find the 'tidy' command. This is common on Linux systems where 'tidy' might not be installed. ```R * checking HTML version of manual ... NOTE Skipping checking HTML validation: no command 'tidy' found ``` -------------------------------- ### Generate Basic Flowchart Source: https://github.com/nrennie/ggflowchart/blob/main/README.md Create a basic flowchart using the ggflowchart() function with the prepared data. ```r ggflowchart(data) ``` -------------------------------- ### Create Basic Flowchart Data Source: https://github.com/nrennie/ggflowchart/blob/main/README.md Define a tibble with 'from' and 'to' columns to represent flowchart edges. ```r data <- tibble::tibble(from = c("A", "A", "A", "B", "C", "F"), to = c("B", "C", "D", "E", "F", "G")) ``` -------------------------------- ### R CMD Check Note: Non-standard things in check directory Source: https://github.com/nrennie/ggflowchart/blob/main/cran-comments.md This note indicates the presence of files or directories in the check directory that are not standard. It is typically found during R CMD check. ```R * checking for non-standard things in the check directory ... NOTE Found the following files/directories: ''NULL'' ``` -------------------------------- ### R CMD Check Note: Detritus in temp directory Source: https://github.com/nrennie/ggflowchart/blob/main/cran-comments.md This note is generated when R CMD check finds extraneous files in the temporary directory. It is specific to certain environments, like Windows. ```R * checking for detritus in the temp directory ... NOTE Found the following files/directories: 'lastMiKTeXException' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.