Description Usage Arguments Value Examples
This creates an user account for a bookkeeper
project with details
concerning the company, such as; address, banking and tax details. By default
the yml
file is added to an gitignore
file, if available, to
prevent leakage of sensitive information.
1 | create_accountant(.text = NULL, quiet = FALSE)
|
.text |
Vector of character string of length 11. In consecutive order listing; company name, street and street number, zip code and city, country, email address, phone number, website, VAT ID, VAT tax number, IBAN and BIC. |
quiet |
Prevents messages from being printed to the console (default =
|
yml
file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## Not run:
# By reading data from the console
create_accountant()
# By adding a vector of length 11 with company name, street and street number
, zip code and city, country, email address, phone number, website, VAT ID,
VAT tax number, IBAN and BIC.
text <- c(
"FAIReLABS",
"Modelstraat 12",
"3017 KH Amsterdam",
"Netherlands",
"schobbenmartin\@gmail.com",
"03012345",
"https://martinschobben.github.io/webpage/",
"12345678",
"NL123456789B01",
"NL99ABCD0123456789",
"AAAABBCCDD"
)
create_accountant(.text = text, quiet = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.