The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

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'
)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.