Created
January 17, 2022 22:57
-
-
Save soh-i/75b394c919f4498d3e530315e1c45621 to your computer and use it in GitHub Desktop.
Rmarkdown template
This file contains 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
--- | |
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