View source: R/check_new_transactions.R
check_new_transactions | R Documentation |
Check for new transactions for a given exchange
check_new_transactions( data, known.transactions, transactions.col, description.col = NULL )
data |
The dataframe |
known.transactions |
A list of known transactions |
transactions.col |
The name of the transaction column |
description.col |
The name of the description column, if available. |
A warning, if there are new transactions. Returns nothing otherwise.
data <- data_CDC[1:5, ] known.transactions <- c("crypto_purchase", "lockup_lock") check_new_transactions(data, known.transactions = known.transactions, transactions.col = "Transaction.Kind", description.col = "Transaction.Description")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.