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

Achievements

Achievements

Highlights

  • 2 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 560 30

  2. Named operators for C++

    C++ 462 34

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

    C++ 275 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 121

  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)

375 contributions in the last year

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

Contribution activity

February 2022

Created a pull request in r-lib/callr that received 1 comment

Prevent stack overflow from recursively sourcing local .Rprofile

Reprex This PR fixes a bug that occurs when a project that uses β€˜callr’ has a local .Rprofile file which attempts to include the user .Rprofile as …

+27 βˆ’0 1 comment

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