Skip to content
View mahmudstat's full-sized avatar

Block or report mahmudstat

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. clockplot clockplot Public

    Maintains R Package to show event time on a 24 hour clock

    R 2 2

  2. articles articles Public

    HTML

  3. open-analysis open-analysis Public

    My random and fun works

    R

  4. stat-lectures stat-lectures Public

    Tracks Lectures made with R and Rmarkdown

    HTML 1

  5. Fibonacci.r Fibonacci.r
    1
    #What is the first fibonacci number that exceeds 100?
    2
    fn = c()
    3
    fn = append(fn, 1)
    4
    fn = append(fn, 1)
    5
    n = 2
  6. FloweR.r FloweR.r
    1
    #Source: https://rpubs.com/iPhuoc/Phyllotaxis
    2
    # This sets plot images to a nice size.
    3
    options(repr.plot.width = 4, repr.plot.height = 4)
    4
    library(ggplot2)
    5
    t=seq(0, 2*pi, length.out=50)