Skip to content
View luk-brue's full-sized avatar

Highlights

  • Pro

Block or report luk-brue

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. statistik-lehre/rtutorials statistik-lehre/rtutorials Public

    Add handcrafted lessons to the RStudio tutorials pane

    R 2 2

  2. significance significance Public

    Shiny app to visualize null hypothesis significance testing

    R

  3. binomial binomial Public

    Shiny app to visualize binomial distributions

    R

  4. shiny app to explore fitting a simpl... shiny app to explore fitting a simple linear regression line manually with sliders and solution button
    1
    library(shiny)
    2
    
                  
    3
    ui <- fluidPage(
    4
    sliderInput("b0", "Intercept b0:", min = -1.5, max = 1.5, value = 1, step = 0.0001),
    5
    sliderInput("b1", "Slope b1:", min = 0, max = 0.15, value = 0, step = 0.0001),