Skip to content
View mark-andrews's full-sized avatar

Highlights

  • Pro

Organizations

@lawsofthought @ntupsychology @rssteachingstats

Block or report mark-andrews

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ntupsychology-data ntupsychology-data Public

    Data sets for use in teaching statistics

    R

  2. festival_of_psychology_2025 festival_of_psychology_2025 Public

    Slides on careers in data analysis

  3. gesis-48-bayesian-multilevel gesis-48-bayesian-multilevel Public

    Bayesian multilevel models course for Gesis 48. March 2019

    TeX 13 12

  4. ddsr ddsr Public

    Source code for the book "Doing Data Science in R" by Mark Andrews (SAGE publishers, 2021)

    Perl 26 9

  5. ljmu_multilevel_models ljmu_multilevel_models Public

    Training course on multilevel models

    R 1

  6. normal_distributions.R normal_distributions.R
    1
    library(tidyverse)
    2
    theme_set(theme_classic())
    3
    
                  
    4
    plot_normal <- function(mean = 0, sd = 1, xmin = -3, xmax = 3) {
    5
      tibble(x = seq(xmin, xmax, length.out = 1000),