In Game of Thrones fliegen kleine grüne Kobolde durch die Lüfte der Anden.
Immer einen Abstand einfügen zwischen Titel und einzelnen Paragraphen.
Wenn ich im Terminal den letzten Command holen möchte, kann ich den Pfeil nach oben drücken, dann erscheint der letzte Command bereits :-)
Wenn ich das html offen habe und ctrl R drücke, aktualisiert es das html :-)
wenn ich nicht jedes Mal rendern will, schreibe ich in das Terminal: quarto preview got-2.qmd. Dann erscheint im Browser das html in der preview(localhost:… wird in Browserfenster angezeigt)
Wenn ich meine Prosa aktualisiere und speichere, wird meine previw des html automatisch aktualisiert :-)
Die folgenden Objekte sind maskiert von 'package:stats':
filter, lag
Die folgenden Objekte sind maskiert von 'package:base':
intersect, setdiff, setequal, union
library("ggrepel")
#load Datascreentimes <-read_csv("GOT_screentimes_1.csv")# show top 10 rowsscreentimes_high <-top_n(screentimes, 10, screentime)# make a scatterplot and label the charactersggplot(screentimes, aes(screentime, episodes)) +geom_point() +geom_text_repel(data = screentimes_high,aes(label = name),min.segment.length =0)
2 Header
2.1 YAML Header
YAML: YAML Ain’t a Markup Language
A machine- and human-readable way of storing structured data, add author on top
format: kann ich html oder typst eingeben. typst ist sehr elegant.
If you use pdf, you might need to install tinytext (see message in terminal)
If there is an error with rendering, open new R Session and go through code line by line.
Chunk options always have to be in the first line of a chunk (example: #|warning: false)
Most information how to write with quarto: quarto.org - guide!