Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

rename_bundles

Rename bundles in emuDB


Description

Rename bundles of emuDB.

Usage

rename_bundles(emuDBhandle, bundles)

Arguments

emuDBhandle

emuDB handle as returned by load_emuDB

bundles

data.frame like object with the columns

  • session: name of sessions containing bundle

  • name: name of bundle

  • name_new: new name given to bundle

It is worth noting that session and name are the columns returned by list_bundles.

Examples

## Not run: 

##################################
# prerequisite: loaded ae emuDB
# (see ?load_emuDB for more information)

# list bundles of session "0000" of ae emuDB
bundles = list_bundles(emuDBhandle = ae,
                       session = "0000")

# append "XXX" to bundle names and rename
bundles$name_new = paste0(bundles$name, "XXX")
rename_bundles(emuDBhandle, bundles)

## End(Not run)

emuR

Main Package of the EMU Speech Database Management System

v2.2.0
GPL (>= 2)
Authors
Raphael Winkelmann [aut, cre], Klaus Jaensch [aut, ctb], Steve Cassidy [aut, ctb], Jonathan Harrington [aut, ctb]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.