Welcome to ClientVPS Mirrors

Working with multiple RCDF files

Working with multiple RCDF files

read_rcdf() function allows you to read multiple RCDF files and load them into R environment as one object. This will only work, however, if you have the

data <- read_rcdf(
  path = c(
    'path/to/file/01.rcdf',
    'path/to/file/02.rcdf',
    'path/to/file/03.rcdf'
  ),
  decryption_key = c(
    'playground/keys/01-private-key.pem',
    'playground/keys/02-private-key.pem',
    'playground/keys/03-private-key.pem'
  ),
  password = c(
    'password01',
    'password02',
    'password03'
  )
)

Alternatively, you can merge

merge_rcdf(
  rcdf_files = c(
    'path/to/file/01.rcdf',
    'path/to/file/02.rcdf',
    'path/to/file/03.rcdf'
  ),
  decryption_key = c(
    'playground/keys/01-private-key.pem',
    'playground/keys/02-private-key.pem',
    'playground/keys/03-private-key.pem'
  ),
  password = c(
    'password01',
    'password02',
    'password03'
  )
  merged_file_path = 'path/to/merged.rcdf'
)

Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.

This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.