Collection of materials

This site collects course notes, practicals, notebooks, and presentations for Ukrainian Biological Data Scince Summer School in one place to be used during and after school. The same repository accepts Quarto, R Markdown, and Jupyter source files.

Some notebooks contains executable code chunks

These cells execute entirely inside your browser. Edit the code and select Run Code. The runtime can take a few seconds to download on first use.

Python

values = [2, 4, 6, 8]
print("Mean:", sum(values) / len(values))

R

values <- c(2, 4, 6, 8)
mean(values)