Skip to content
Avatar
πŸ“¦
Making your R code easier to reuse
πŸ“¦
Making your R code easier to reuse

Sponsors

@teamreagan @dereckdemezquita

Highlights

  • 4 discussions answered

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.

Report abuse

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

Report abuse

Pinned

  1. box Public

    Write reusable, composable and modular R code

    R 615 33

  2. Named operators for C++

    C++ 472 33

  3. cpp11-range Public

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

    C++ 284 32

  4. thesis Public

    My PhD thesis, β€œInvestigating the link between tRNA and mRNA abundance in mammals”

    TeX 36 5

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

    TeX 1.5k 123

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

243 contributions in the last year

Jul Aug Sep Oct Nov Dec Jan Feb Mar Apr May Jun Mon Wed Fri
Activity overview
Contributed to klmr/box, klmr/pylox, r-universe/klmr and 23 other repositories

Contribution activity

June 2022

Created an issue in HenrikBengtsson/globals that received 4 comments

cleanup fails on environments with strict extraction

Describe the bug The original issue was described in klmr/box#285. In a nutshell, when a subclass of environment overrides $ to raise an error on n…

4 comments
Answered 1 discussion in 1 repository

Seeing something unexpected? Take a look at the GitHub profile guide.