Skip to content

Instantly share code, notes, and snippets.

@munozedg
munozedg / medium_EN_clean.html
Created August 18, 2026 06:29
IA en Salud / AI in Health — Aug 2026 — Medium Import Ready
<!DOCTYPE html>
<html>
<head><meta charset="UTF-8"></head>
<body>
<p><em>Your work in healthcare will change more in the next 3 years than in the last 20. Here’s why.</em></p>
<hr/>
<p>Part of my job as a Biomedical Data Scientist is staying up to date with what’s happening in AI applied to medicine — week by week, it’s not optional. I decided that instead of keeping these notes to myself, it makes more sense to share them. So that’s exactly what this is: my weekly notes, organized to be useful to you, a few times a month.</p>
<p>What’s happening with AI in medicine right now is not a trend — it’s a genuine inflection point.</p>
@munozedg
munozedg / rs.r
Created February 17, 2022 08:50 — forked from klmr/rs.r
A versatile re-source file function for R
#' (Re-)source parts of a file
#'
#' \code{rs} loads, parses and executes parts of a file as if entered into the R
#' console directly (but without implicit echoing).
#'
#' @param filename character string of the filename to read from. If missing,
#' use the last-read filename.
#' @param from first line to parse.
#' @param to last line to parse.
#' @return the value of the last evaluated expression in the source file.