Proteomics in Biomedicine
University of the Basque Country (UPV/EHU)
September 23, 2024
---
title: "My first notebook"
output: html_notebook
---
# First section
The title above will be rendered with a bigger font and this text with normal font.
## Subsection
The following block is a code chunk in R that will be executed (when pressing
Ctrl+Shift+Enter) and its output included in this same document:
` ` `{r}
x <- 2
x+1
` ` `
3
3*4 + 2^3
x <- 5/4
or 5/4 -> x
x * 3
min(3, 5, 2)
min(3, NA, 5, 2, na.rm = TRUE)
library(tidyverse)
3.14
"E2F1"
or 'E2F1'
c(4, 6, 9)
TRUE
, FALSE
NA
target
and decoy
columns and 5 rows:# A tibble: 5 × 2
decoy target
<dbl> <dbl>
1 0 10
2 0 20
3 1 30
4 1 40
5 2 50
FDR=decoy/target
column:*.ova
)introduction.Rmd
(this document)workflow_id.Rmd
:
Proteomics in Biomedicine – ©2023-2024 Gorka Prieto Agujeta (UPV/EHU)