Skip to content
View Airendaie's full-sized avatar

Highlights

  • Pro

Block or report Airendaie

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. airendaie.github.io airendaie.github.io Public

    HTML

  2. Using ggplot programatically (in a f... Using ggplot programatically (in a for loop)
    1
    ## To create plots of each behaviour per day and per horse 
    2
    ### To be able to use ggplot2 programatically we need to use sym() to create a 'symbolic' variable that ggplot can read (it will not read 'i' correctly)
    3
    
                  
    4
    for (i in colnames(data[,5:68])){   
    5
    var <- sym(i)
  3. A snippet to remove all trailing suf... A snippet to remove all trailing suffixes from a file of long strings (e.g. sample names, file names) in bash. This keeps only the section before the first "_" in the line. Functions on a line-by-line basis, feed to a temp file then rename as required for your input list.
    1
    #!bin/bash
    2
    cut -f1 -d"_" filename.txt > filename.tmp
  4. useful-bash-snippets useful-bash-snippets Public

    Shell