Skip to content
View juliuskittler's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report juliuskittler

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. IEX_historical-prices IEX_historical-prices Public

    This repo contains a script for regularly downloading all historic intraday OHCL data from IEX with Python, asynchronously, via API and for free.

    Python 59 34

  2. textmining-report textmining-report Public

    This repo contains my project report for the course 732A92 Text Mining.

    HTML

  3. shiny-apps shiny-apps Public

    This repo contains 5 shiny apps that I created for data exploration purposes.

    R 1

  4. templates templates Public

    Simple templates for visualisations, data analysis and more.

    Jupyter Notebook 1

  5. aoc2022 aoc2022 Public

    These are my solutions for the coding challenge "Advent of Code 2022". Any feedback is welcome!

    Python 1

  6. Implementation of the Needleman-Wuns... Implementation of the Needleman-Wunsch algorithm in R
    1
    # References: https://de.wikipedia.org/wiki/Needleman-Wunsch-Algorithmus
    2
    
                  
    3
    needleman = function(seq1, seq2, gap, mismatch, match){
    4
      
    5
      # Stop conditions