Skip to content
View awhstin's full-sized avatar
🦬
🦬
Block or Report

Block or report awhstin

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
awhstin/README.md

Hi there I'm Austin 👋

👨‍💻 Director, Information Strategy @LurieChildrensFoundation
👨‍🎓 University of Nebraska alumni

Pinned Loading

  1. rprojs rprojs Public

    A hugo site generated with blogdown & #rstats

    JavaScript 3 2

  2. awtools awtools Public

    misc functions and aesthetic elements for my personal website

    R 29 7

  3. Dataset-List Dataset-List Public

    Storing datasets

    9 10

  4. simple function to return the column... simple function to return the column name with the max (or min) value from a comparison of columns.
    1
    data(mtcars)
    2
    
    
    3
    col_compare<-function(df,cols,fun=which.max){
    4
      x<-data.frame(df)
    5
      temp<-x[,c(cols)]