Skip to content
View DrK-Lo's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report DrK-Lo

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

  1. EvolutionWorkshop EvolutionWorkshop Public

    Forked from mmistakes/minimal-mistakes

    JavaScript 1 1

  2. lotterhoslabprotocols lotterhoslabprotocols Public

    JavaScript 2 8

  3. Easy code for installing packages in... Easy code for installing packages in R (if not installed) and calling their libraries
    1
    
                  
    2
    packages_needed <- c("raster", "FNN", "RColorBrewer", "colorRamps", "adehabitatLT",
    3
                         "data.table", "tidyverse", "fields", "ggplot2", "hexbin",
    4
                         "rgdal", "tmap", "gstat", "sp", "maptools", "sf", "fasterize",
    5
                         "fansi", "raster", "tmap", "gstat", "ContourFunctions","ash"
  4. ModelValidationProgram/EasternOysterEnvData ModelValidationProgram/EasternOysterEnvData Public

    Rich Text Format

  5. GGplot theme Lotterhos GGplot theme Lotterhos
    1
    ggtheme <- theme_bw() + theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), panel.background = element_blank(), panel.border=element_blank(), axis.line = element_line(colour="grey30"), axis.title = element_text(colour="grey20"), axis.text = (element_text(colour="grey30")), legend.title = element_text(colour="grey20"), legend.text = element_text(colour="grey30"))
    2
    
                  
    3
    to use it, just use:
    4
    
                  
    5
    ggplot(data) + geom_point(aes(x=x, y=y)) + ggtheme