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

Sponsors

@dereckmezquita

Organizations

@EBI-predocs
Block or Report

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

  1. box box Public

    Write reusable, composable and modular R code

    R 811 45

  2. named-operator named-operator Public

    Named operators for C++

    C++ 495 32

  3. cpp11-range cpp11-range Public

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

    C++ 306 38

  4. thesis thesis Public

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

    TeX 39 3

  5. gpoore/minted 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.7k 125

  6. Efficient, tail recursive fibonacci ... Efficient, tail recursive fibonacci implementation for R and Python (but since they doesn’t do TCO it’s still using O(n) space)
    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)