sort_colms: Sort columns in a more intuitive order

View source: R/sort_colms.R

sort_colmsR Documentation

Sort columns in a more intuitive order

Description

sort_colms sorts selection table columns in a more intuitive order.

Usage

sort_colms(X)

Arguments

X

Data frame containing columns for sound file (sound.files), selection (selec), start and end time of signals ('start' and 'end') and low and high frequency ('bottom.freq' and 'top.freq', optional). See the example data 'lbh_selec_table'.

Details

The function returns the data from the input data frame with the most relevant information for acoustic analysis located in the first columns. The priority order for column names is: "sound.files", "channel", "selec", "start", "end", "top.freq", and "bottom.freq".

Value

The same data as in the input data frame but with the most relevant information for acoustic analysis located in the first columns.

Author(s)

Marcelo Araya-Salas (marcelo.araya@ucr.ac.cr)

Examples

library(warbleR)
data("selec.table")

# mess column order
selec.table <- selec.table[, sample(seq_len(ncol(selec.table)))]

# check names
names(selec.table)

selec.table <- sort_colms(X = selec.table)

# check names again
names(selec.table)


maRce10/warbleR documentation built on April 8, 2024, 11:08 p.m.