This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #' (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. |