Skip to content
View mmoranv's full-sized avatar

Block or report mmoranv

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. R Basic commands 4: Merge datasets R Basic commands 4: Merge datasets
    1
    ################# MERGE DATASETS
    2
    #Standard
    3
    merge(x, y, by = intersect(names(x), names(y)),
    4
          by.x = by, by.y = by, all = FALSE, all.x = all, all.y = all,
    5
          sort = TRUE, suffixes = c(".x",".y"),
  2. R Basic commands 3: Manipulate datasets R Basic commands 3: Manipulate datasets
    1
    ############# MANIPULATE DATASETS
    2
    
                  
    3
    #Filter (easier using %>%)
    4
    NEW_DATASET <- OLD_DATASET %>%
    5
    	filter(VARIABLE == CONDITION)
  3. R basic commands 1: Manage datasets R basic commands 1: Manage datasets
    1
    ###### MANAGE DATASETS
    2
    
                  
    3
    #Import files
    4
    filename <- read.csv('location/of/the/file.csv')
    5
    
                  
  4. R Basic commands 2: Describe datasets R Basic commands 2: Describe datasets
    1
    ############### DESCRIBE DATASETS
    2
    
                  
    3
    ## Min, max, etc, on different variables
    4
    summary(dataset)
    5
    
                  
  5. AccessibleNYC AccessibleNYC Public

    website that contains leaflet maps of NYC subway stations accessibility 2018

    HTML 1 2