GitHunt
NE

nevrome/txtstorage

R Package - A very simple string and number storage system

txtstorage

R package that provides a very simple string and number storage system. I needed one for my thesis, so this package is mostly for personal use.

Installation

devtools::install_github("nevrome/txtstorage")

Usage

storage_file <- "teststorage.txt"

important_number <- 3
important_string <- "I like cheese."

txtstorage::store("Important number", important_number, storage_file)
txtstorage::store("Important string", important_string, storage_file)

new_important_number <- 4

txtstorage::store("Important number", new_important_number, storage_file)

txtstorage::read("Important number", storage_file)

Licence

rdoxygen is released under the GNU General Public Licence, version 2. Comments and feedback are welcome, as are code contributions.

Contributors

GNU General Public License v2.0
Created August 7, 2018
Updated February 6, 2024