DEBUG
, INFO
, WARNING
, ERROR
, and FATAL
cat2('Debug passed!', level = 'DEBUG')
#> ✔ Debug passed!
cat2('You are all set.', level = 'INFO')
#> ♥ You are all set.
cat2('Wait a second...', level = 'WARNING')
#> ⚠ Wait a second...
cat2('Ooops', level = 'ERROR')
#> ✖ Ooops
cat2('Bi--Doop---', level = 'FATAL')
#> ✖ Bi--Doop---
#> Error:
#> ...
Level FATAL
will raise errors.
parse_svec
and deparse_svec
parse_svec
converts characters like "7-10,14-15"
to numeric vectors
deparse_svec
reverse the process
Parameter max_lag
in deparse_svec
changes the threshold of integers collapsed together:
The goal is to work as an alternative to retrieve system information. For example, R doesn’t provide functions to get memory limits, or CPU chip-set information on Linux or MacOS.
# Most of the CPU Chipset and vendor
get_cpu()
#> $vendor_id
#> [1] "GenuineIntel"
#>
#> $model_name
#> [1] "Intel(R) Core(TM) i5-7600K CPU @ 3.80GHz"
# Total RAM in bytes
get_ram()
#> [1] 68719476736
# Print-friendly
to_ram_size(get_ram(), 1024)
#> 64.0 GB
# WARNING: $free is the total RAM - R usage, is no the actual free RAM
mem_limit2()
#> $total
#> [1] 68719476736
#>
#> $free
#> [1] 68670811032
askYesNo
comes with utils
package allows to ask yes/no questions and returns logical value. If cancel
is entered, then the function returns NA
, if answers other than yes
, no
or cancel
is given, it raise an error. dipsaus::ask_yesno
will ask the question again and again until the user actually say yes
or no
> ask_yesno('Please answer an yes/no question, ok?')
## ♥ Please answer an yes/no question, ok? (Yes/no):
> qweee
## ⚠ Please answer Y/yes, N/no, or c to cancel. (Yes/no):
> ttt
## ⚠ Please answer Y/yes, N/no, or c to cancel. (Yes/no):
> y
## [1] TRUE
ask_or_default
instead of asking a yes/no question, it asks a question with default answer. User don’t have to type the answers if the they accept defaults: