https://github.com/repsychling/smlp2022
SMLP2022: Advanced methods in frequentist statistics with ulia
https://github.com/repsychling/smlp2022
Last synced: about 1 year ago
JSON representation
SMLP2022: Advanced methods in frequentist statistics with ulia
- Host: GitHub
- URL: https://github.com/repsychling/smlp2022
- Owner: RePsychLing
- Archived: true
- Created: 2022-04-22T13:39:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T20:16:13.000Z (almost 3 years ago)
- Last Synced: 2025-02-28T22:50:27.422Z (over 1 year ago)
- Language: HTML
- Homepage: https://repsychling.github.io/SMLP2022/
- Size: 111 MB
- Stars: 14
- Watchers: 6
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SMLP2022
SMLP2022: Advanced methods in frequentist statistics with Julia
The rendered website version of the course materials is available [here](https://repsychling.github.io/SMLP2022/).
This repository uses [Quarto](https://quarto.org). To be able to render all the pages, you will need an appropriate Jupyter kernel installed and the local environment instantiated.
```sh
~/SMLP2022$ julia
julia> using Pkg
julia> Pkg.add("IJulia")
Updating registry at `~/.julia/registries/General.toml`
Resolving package versions...
< lots of output >
julia> using IJulia
julia> installkernel("julia", "--threads=auto", "--project=@.")
[ Info: Installing julia kernelspec in ~/.local/share/jupyter/kernels/julia-1.8
"~/.local/share/jupyter/kernels/julia-1.8"
julia> Pkg.activate(".")
Activating project at `~/SMLP2022`
julia> Pkg.instantiate()
< lots of output >
julia> exit()
~/SMLP2022$ quarto preview
< lots of output >
```