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: "subfigures test" | |
format: typst | |
--- | |
Figure test | |
See @fig-fig1 for a figure with two subfigures. | |
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: content conditional visual (html, pdf, epub) | |
csl: "/Users/sebastiansaueruser/Google Drive/Literatur/refmgt/apa7.csl" | |
bibliography: /Users/sebastiansaueruser/github-repos/bib/bib.bib | |
format: | |
epub: | |
lang: de | |
# html: |
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
out <- renv::dependencies() | |
ps <- out$Package %>% unique() | |
missing <- setdiff(ps, installed.packages()) # can take a long time | |
missing | |
install.packages(missing) |
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
library(tidyverse) | |
data(mtcars) | |
mtcars %>% | |
select(mpg, hp) %>% | |
slice_head(n = 5) | |
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
data(mtcars) | |
library(dplyr) # nicht "tidyverse", denn "dplyr" reicht | |
mtcars %>% | |
filter(am = 0) # den kürzesten Code, der Ihren Fehler entstehen lässt! | |
sessionInfo() # gibt Infos zur R-Version etc. aus |
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
library(ggplot2) | |
source('geom_font_awesome.R') | |
shapes_map = c( | |
setosa = 'car', | |
virginica = 'ban', | |
versicolor = 'star' | |
) | |
( |
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
```{r libs, include = FALSE} | |
library(tidyverse) | |
``` | |
```{r global-knitr-options, include=FALSE} | |
knitr::opts_chunk$set(fig.pos = 'H', | |
fig.asp = 0.618, |
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
```{r libs, include = FALSE} | |
library(tidyverse) | |
``` | |
```{r global-knitr-options, include=FALSE} | |
knitr::opts_chunk$set(fig.pos = 'H', | |
fig.asp = 0.618, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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: "Grading BDA WS20" | |
author: "Sebastian Sauer" | |
date: "2/5/2021" | |
output: html_document | |
--- | |
```{r global-knitr-options, include=FALSE} | |
knitr::opts_chunk$set(fig.pos = 'H', | |
fig.asp = 0.618, |
NewerOlder