Technical Notes

Jupyter notebooks have been made to be compatible with Colab. For Python, the libraries included are in March 2024:

  • Python version 3.10.12
  • matplotlib version 3.7.1
  • librosa version 0.10.1
  • numpy version 1.25.2

and for R, the version in the Colab are:

  • R version 4.2.2
  • tidyverse 1.3.1
  • ggplot2 3.4.0

Some R notebooks install extra libraries. Most of the R notebooks require installing MusicScienceData library available at https://github.com/tuomaseerola/MusicScienceData.

In R, this library can be installed:

if (!require(devtools)) install.packages("devtools",quiet=TRUE)
devtools::install_github("tuomaseerola/MusicScienceData@main",quiet=TRUE)

library(MusicScienceData)
Back to top