Read.Transactions: Read

Description Usage Arguments Value See Also Examples

View source: R/Read.R

Description

This procedure identifies accounts occuring in a Transactions object which cannot be found in the associated database. It then adds these accounts to the Transactions object and returns it.

Usage

1
2
## S3 method for class 'Transactions'
Read(x)

Arguments

x

Transactions object (created with Read_csv for example)

Value

Transactions object, a list of 4 elements:

See Also

Other procedures: Duplicated.Transactions, Duplicated, Enter.Transactions, Enter, Evaluate_Predictor, Predict.Transactions, Predict, Read_csv, Read, Update_Predictor

Examples

1
2
3
4
5
6
7
8
db <- "test.db"
Create_testDB(db)

f <- system.file("extdata", "test_transactions.csv", package = "abacus")
cols <- list(name = 6, iban = 7, bic = 8, date = 3, 
             reference = 5, entry = 4, value = 9, currency = 10)
tas <- Read_csv("giro", f, cols, db)
tas <- Read(tas)

mRcSchwering/abacus documentation built on May 21, 2019, 9:18 a.m.