-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExampleRMarkdownNotebook01.Rmd
More file actions
60 lines (45 loc) · 1.15 KB
/
ExampleRMarkdownNotebook01.Rmd
File metadata and controls
60 lines (45 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: "ExampleRMarkdownNotebook01"
author: "Goran S. Milvoanovic"
date: "2024-03-25"
output:
html_document: default
pdf_document: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# 0. Introduction

This is an analytical report on the most recent developments in the NFT market.
## 0.1 The Basics of the NFT Market in 2024.
Blach blah blah...
**This is bold.**
*This is italic.*
This is an URL: [DataKolektiv](https://www.datakolektiv.com)
``` {r echo = TRUE}
print("Hello, World.")
```
## 0.2 Related Business Risks on the Contemporary NFT Market
**Blach blah blah...**
```{r echo=FALSE}
library(ggplot2)
data("mtcars")
mtcars$model <- rownames(mtcars)
head(mtcars)
```
```{r echo=FALSE}
ggplot(data = mtcars,
aes(x = mpg, y = qsec,
label = model,
group = gear,
color = gear)) +
geom_point() +
geom_smooth(formula ='y~x',
method = "lm",
linewidth = .15) +
ggtitle("mpg vs. qsec in the mtcars dataset, per gear.") +
theme_bw() +
theme(plot.title = element_text(size = 10)) +
theme(panel.border = element_blank())
```