Skip to content
View klmr's full-sized avatar
📦
Making your R code easier to reuse
📦
Making your R code easier to reuse

Organizations

@EBI-predocs

Block or report klmr

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. box Public

    Write reusable, composable and modular R code

    R 892 49

  2. named-operator Public

    Named operators for C++

    C++ 496 32

  3. cpp11-range Public

    Range-based for loops to iterate over a range of numbers or values

    C++ 310 38

  4. thesis Public

    My PhD thesis, “Investigating the link between tRNA and mRNA abundance in mammals”

    TeX 40 3

  5. gpoore/minted Public

    minted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.

    TeX 1.8k 127

  6. Efficient, tail recursive fibonacci ...
    1
    def fib(n: int) -> int:
    2
        def f(n, a, b):
    3
            if n == 0: return a
    4
            if n == 1: return b
    5
            return f(n - 1, b, a + b)