Making your R code easier to reuse
Geneticist 𧬠, computer scientist πΊ and software engineer π¨βπ» .
- London, UK
- http://klmr.me
- @klmr
Highlights
- 2 discussions answered
Block or Report
Block or report klmr
Report abuse
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
Report abusePinned
-
-
-
gpoore/minted Public
minted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.
-
1
def fib(n: int) -> int:
2def fib(n, a, b):
3if n == 0: return a
4if n == 1: return b
5return fib(n - 1, b, a + b)
375 contributions in the last year
Less
More
Activity overview
Contribution activity
February 2022
Created 4 commits in 3 repositories
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