Spaces:
Running
Running
File size: 377 Bytes
8f7fb71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Set a default CRAN mirror
options(repos = c(CRAN = "https://cloud.r-project.org"))
# Load a commonly used package
library(tidyverse)
# Use our own data summary function
source("functions.R")
# Make this R session visible to the mcptools MCP server
# NOTE: mcp_session() needs to be run in an *interactive* R session, so we can't put it in server.R
mcptools::mcp_session()
|