This function will operate in one of two ways. If a

makewinnerplots(
  path = NA,
  csvs = NA,
  sounds = NA,
  height = 1000,
  width = 1400,
  pointsize = 20,
  number_of_lines = 250,
  progressbar = TRUE,
  alternate_output_path = NA
)

Arguments

path

The path to the working directory for the Fast Track project. If no path is provided, the current working directory for the current R session is used.

csvs

csv data loaded using the readcsvs function. In NA, data is read in from the 'csvs' folder in the path directory.

sounds

--.

height

the desired height of the image in pixels.

width

the desired width of the image in pixels.

pointsize

point size for plotting.

number_of_lines

the number of pixels along the x axis for each spectrogram. Consider in relation to image width.

progressbar

if TRUE, information about estimated analysis time is displayed.

alternate_output_path

if not NA, images will be written directly to this path.

Examples

if (FALSE) { csvs = readcsvs () # this will make a plot makewinnerplots(csvs = csvs[[1]]) # this will make 5 plots in the /images_winners folder makewinnerplots(csvs = csvs[[1:20]]) }