Skip to content

Instantly share code, notes, and snippets.

@soh-i
Created January 17, 2022 22:57
Show Gist options
  • Save soh-i/75b394c919f4498d3e530315e1c45621 to your computer and use it in GitHub Desktop.
Save soh-i/75b394c919f4498d3e530315e1c45621 to your computer and use it in GitHub Desktop.
Rmarkdown template
---
title: "notebook title"
author: "Soh Ishiguro"
date: "`r Sys.Date()`"
output:
html_document:
toc: yes
toc_float: no
number_sections: yes
keep_md: yes
pdf_document: default
---
```{r, include=FALSE}
knitr::opts_chunk$set(
comment = "#>",
out.width="50%",
dpi=300
)
```
# Data transformation
```{r, message=FALSE}
library(CytoExploreR)
library(flowWorkspace)
library(flowCore)
library(dplyr)
library(ggplot2)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment