📦
Making your R code easier to reuse
Geneticist 🧬, computer scientist 𝝺 and software engineer 👨💻.
- Basel, CH
- http://klmr.me
- @klmr@mastodon.social
Block or Report
Block or report klmr
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
cpp11-range
cpp11-range PublicRange-based for loops to iterate over a range of numbers or values
-
gpoore/minted
gpoore/minted Publicminted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.
-
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) 1def fib(n: int) -> int:
2def f(n, a, b):
3if n == 0: return a
4if n == 1: return b
5return f(n - 1, b, a + b)
216 contributions in the last year
| Day of Week | November Nov | December Dec | January Jan | February Feb | March Mar | April Apr | May May | June Jun | July Jul | August Aug | September Sep | October Oct | November Nov | ||||||||||||||||||||||||||||||||||||||||
| Sunday Sun | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Monday Mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Tuesday Tue | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Wednesday Wed | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Thursday Thu | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Friday Fri | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Saturday Sat | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Less
More
Activity overview
Contribution activity
November 2023
Created 2 commits in 2 repositories
Created a pull request in jalvesaq/Nvim-R that received 8 comments
Improve performance of nvimcom launch
Currently, Nvim-R and ‘nvimcom’ repeatedly query installed.packages() to find information about installed packages. Unfortunately, installed.packag…
+59
−35
lines changed
•
8
comments
Created an issue in r-lib/rig that received 4 comments
Allow running Rscript via rig subcommand
Rig has a subcommand rig run to run a specific version of R with arguments.
It would be great if there was a similar way of running Rscript, e.g.:
r…
4
comments




