Zrobiono rodziały 4,5
This commit is contained in:
parent
8ea82f37dc
commit
09d2f09e48
356
Rodział 1-3/Kurs_R.R
Normal file
356
Rodział 1-3/Kurs_R.R
Normal file
@ -0,0 +1,356 @@
|
||||
# author: Cezary Pukownik
|
||||
# indeks: s444337
|
||||
|
||||
library(tidyverse)
|
||||
|
||||
#' # 2.3.1
|
||||
#' ## Zadanie 1
|
||||
|
||||
airquality %>%
|
||||
select(Ozone, Solar.R, Wind, Temp) %>%
|
||||
filter(Ozone>80)
|
||||
|
||||
#' ## Zadanie 2
|
||||
#install.packages('weathermetrics')
|
||||
library(weathermetrics)
|
||||
|
||||
airquality %>%
|
||||
mutate(TempC=fahrenheit.to.celsius(Temp))
|
||||
|
||||
#' # 2.4.1
|
||||
#' ## Zadanie 1
|
||||
as_tibble(airquality)
|
||||
|
||||
#' ## Zadanie 2
|
||||
tibble(litery=letters[6:11],
|
||||
miesiace=month.name[1:6])
|
||||
|
||||
#' # 3.2.4
|
||||
#' ## Zadanie 1
|
||||
ggplot(data=mpg)
|
||||
|
||||
#' Co widzisz?
|
||||
#' Szare. puste pole
|
||||
|
||||
#' ## Zadanie 2
|
||||
as_tibble(mtcars)
|
||||
|
||||
#' liczba wierszy: 32
|
||||
|
||||
#' ## Zadanie 3
|
||||
?mpg
|
||||
|
||||
#' drv
|
||||
#' f = front-wheel drive, r = rear wheel drive, 4 = 4wd
|
||||
|
||||
#' ## Zadanie 4
|
||||
ggplot(aes(x=hwy, y=cyl), data=as_tibble(mpg)) + geom_point()
|
||||
|
||||
#' ## Zadanie 5
|
||||
ggplot(aes(x=class, y=drv), data=as_tibble(mpg)) + geom_point()
|
||||
|
||||
#' Dlaczego wykres jest bezuzyteczny?
|
||||
#' Wykres nie pokazuje żadnych liczbowych informacji na temat danych
|
||||
#' Zostały wykorzystane dwie cechy typu categorical
|
||||
#' Jedyną informacją jest to, czy dana kombinacja drv i class istanieje.
|
||||
|
||||
#' # 3.3.1
|
||||
#' ## Zadanie 1
|
||||
|
||||
#' ustalenie parametru color wewnątrz funckcji aes
|
||||
#' powinno być nazwą kolumny z categoriami, po których
|
||||
#' punkty zostaną pogrupowane, a nie istanieje kolumna "blue"
|
||||
#' w zbriorze danych
|
||||
#'
|
||||
#' parametr color powinien zostać ustalony wewnątrz
|
||||
#' funkcji geom_point. Poprawiony kod poniżej.
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = displ, y = hwy), color = "blue")
|
||||
|
||||
#' ## Zadanie 2
|
||||
mpg
|
||||
#' kolumny z danymi kategorialnymi to:
|
||||
#' manufacturer, model, trans, frv, fl, class
|
||||
#' można zwrócić uwagę na typ danych w kolumnie
|
||||
#' jeśli typ to <chr>, to najprawdopodobniej jest to dana kategorialna
|
||||
|
||||
#' ## Zadanie 3
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x=displ, y=hwy, color=displ, size=displ))
|
||||
|
||||
#' zmienna ciągła jest interpolowania między dwoma kolorami tworząc gradient
|
||||
#' tak jak samo z rozmiarem, rozmiar jest skalowany
|
||||
#' w przypadku shape powoduje to błąd. Gdyby podać dane kategorialne
|
||||
#' podział byłby dyskretny, na różne kolory, wielkości, kształty
|
||||
|
||||
|
||||
#' ## Zadanie 4
|
||||
#' Przykład w punkcie wyżej
|
||||
#' Ta sama zmienna bedzie przedstawiona różnymi metodami
|
||||
|
||||
#' ## Zadanie 5
|
||||
#' stroke wpływa na grubuść konturu, obrysu, mozna stosować z punktami i liniami
|
||||
?geom_point
|
||||
|
||||
#' ## Zadanie 6
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x=displ, y=hwy, color=displ < 5))
|
||||
|
||||
|
||||
mpg %>%
|
||||
filter(displ < 5) %>%
|
||||
mutate(is_less_than_5=displ < 5)
|
||||
|
||||
#' Przypisanie displ < 5 podzieliło data set na dwie grupy
|
||||
#' TRUE oraz FALSE, w zalezności od tego czy warunek był spełniony
|
||||
#' czy nie.
|
||||
|
||||
#' # 3.5.1
|
||||
#' ## Zadanie 1
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = displ, y = hwy)) +
|
||||
facet_grid(drv ~ displ)
|
||||
|
||||
#' ggplot potraktuje ją jako zmienną kategorialną,
|
||||
#' tworząc siatkę dla kazdej unikatowej wartości zmiennej ciagłęj
|
||||
|
||||
#' ## Zadanie 2
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = drv, y = cyl))
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = drv, y = cyl)) +
|
||||
facet_grid(cyl~drv)
|
||||
|
||||
#' puste komórki oznacznaczają brak danych
|
||||
|
||||
#' ## Zadanie 3
|
||||
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = displ, y = hwy)) +
|
||||
facet_grid(drv ~ .)
|
||||
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = displ, y = hwy)) +
|
||||
facet_grid(. ~ cyl)
|
||||
|
||||
#' kropka traktowana jest jako puste pole,
|
||||
#' wtedy jedna z osi, nie bedzie kategoryzowana
|
||||
|
||||
|
||||
#' ## Zadanie 4
|
||||
ggplot(data = mpg) +
|
||||
geom_point(mapping = aes(x = displ, y = hwy)) +
|
||||
facet_wrap(~ class, nrow = 2)
|
||||
|
||||
|
||||
#' # 3.6.1
|
||||
|
||||
#' ## Zadanie 1
|
||||
#' liniowy - geom_line()
|
||||
#' pudełkowy - geom_boxplot()
|
||||
#' histogram - geom_histogram()
|
||||
#' warstwowy - geom_area()
|
||||
|
||||
#' ## Zadanie 2
|
||||
ggplot(data = mpg, mapping = aes(x = displ, y = hwy, color = drv)) +
|
||||
geom_point() +
|
||||
geom_smooth(se = FALSE)
|
||||
|
||||
#' ## Zadanie 3
|
||||
#' show.legend = FALSE, sluży do ukrycia legendy
|
||||
|
||||
#' ## Zadanie 4
|
||||
#' parametr se w funcji geom_smooth() służy do pokazania, lub ukrycia przedziałów ufnośći na wykresie.
|
||||
|
||||
#' ## Zadanie 5
|
||||
#' dwa poniższe wyresy są takie same, różnią się tylko sposobem denifincji mapowania.
|
||||
#' mapowanie wewnątrz aes w ggplot, przenosi mapowania na wszystkie geometrie, gdy nie sa zdefiniowane inne.
|
||||
|
||||
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
||||
geom_point() +
|
||||
geom_smooth()
|
||||
|
||||
ggplot() +
|
||||
geom_point(data = mpg, mapping = aes(x = displ, y = hwy)) +
|
||||
geom_smooth(data = mpg, mapping = aes(x = displ, y = hwy))
|
||||
|
||||
#' ## Zadanie 6
|
||||
|
||||
#' Wykres 1
|
||||
|
||||
mpg %>%
|
||||
ggplot(aes(x=displ, y=hwy)) +
|
||||
geom_point() +
|
||||
geom_smooth(se=FALSE)
|
||||
|
||||
#' Wykres 2
|
||||
mpg %>%
|
||||
ggplot(aes(x=displ, y=hwy, group=drv)) +
|
||||
geom_point() +
|
||||
geom_smooth(se=FALSE)
|
||||
|
||||
#' Wykres 3
|
||||
mpg %>%
|
||||
ggplot(aes(x=displ, y=hwy, color=drv)) +
|
||||
geom_point() +
|
||||
geom_smooth(se=FALSE)
|
||||
|
||||
#' Wykres 4
|
||||
mpg %>%
|
||||
ggplot(aes(x=displ, y=hwy)) +
|
||||
geom_point(aes(color=drv)) +
|
||||
geom_smooth(se=FALSE)
|
||||
|
||||
#' Wykres 5
|
||||
mpg %>%
|
||||
ggplot(aes(x=displ, y=hwy)) +
|
||||
geom_point(aes(color=drv)) +
|
||||
geom_smooth(aes(linetype=drv), se=FALSE)
|
||||
|
||||
#' Wykres 6
|
||||
mpg %>%
|
||||
ggplot(aes(x=displ, y=hwy)) +
|
||||
geom_point(aes(fill=drv), shape=21, stroke=2, color='white', size=2)
|
||||
|
||||
#' # 3.7.1
|
||||
|
||||
# Zadanie 1
|
||||
?stat_summary
|
||||
|
||||
#' Funcja stat_summary jest związana w funcją geom_pointrange()
|
||||
diamonds %>%
|
||||
ggplot() +
|
||||
geom_pointrange(aes(x = cut, y = depth), stat='summary')
|
||||
|
||||
#' ## Zadanie 2
|
||||
#' funkcja geom_bar służy do wykresów słupkowych/kolumnowych i jej domyslna statystyka do 'count',
|
||||
#' funcja geom_col, ma domyślną statystykę 'identity'
|
||||
|
||||
#' ## Zadanie 3
|
||||
#'
|
||||
#' geom_bar : stat_count
|
||||
#' geom_col : identity
|
||||
#' geom_histogram: stat_bin
|
||||
#' geom_line : identity
|
||||
#' geom_path : identity
|
||||
#' geom_step : identity
|
||||
#' geom_segment : identity
|
||||
#' geom_curve : identity
|
||||
#' geom_spoke : identity
|
||||
#' geom_polygon : identity
|
||||
#' geom_ribbot : identity
|
||||
#' geom_area : identity
|
||||
#' geom_freqpoly : stat_bin
|
||||
#'
|
||||
|
||||
#' ## Zadanie 4
|
||||
#' ?geom_smmoth : stat_smooth
|
||||
#' y - predicted value
|
||||
#' ymin - lower pointwise confidence interval around the mean
|
||||
#' yman - upper pointwise confidence interval around the mean
|
||||
#' se = standard error
|
||||
#'
|
||||
#' ## Zadanie 5
|
||||
|
||||
#' każdy "słupek" jest taki sam
|
||||
ggplot(data = diamonds) +
|
||||
geom_bar(mapping = aes(x = cut, y = ..prop..))
|
||||
ggplot(data = diamonds) +
|
||||
geom_bar(mapping = aes(x = cut, fill = color, y = ..prop..))
|
||||
|
||||
# uzyliśmy group=1, aby nadpisać domysle grupowanie funcji geom_bar, które grupuje po x, czyli po cut,
|
||||
# dlatego każdy słupek wyglądał identycznie, ponieważ powinniśmy w tym przypadku zgrupować po całym zbiorze, usunąć grupy.
|
||||
# równie dobrze będzie działać group=2, albo group='abc'
|
||||
|
||||
ggplot(data = diamonds) +
|
||||
geom_bar(mapping = aes(x = cut, fill = color, y = ..prop.., group=1))
|
||||
|
||||
|
||||
|
||||
#' # 3.8.1
|
||||
#'
|
||||
#' ## Zadanie 1
|
||||
ggplot(data = mpg, mapping = aes(x = cty, y = hwy)) +
|
||||
geom_point()
|
||||
|
||||
#' ## Zadanie 2
|
||||
#' nakładają się na siebie punkty i nie widać dobrze zagęszczenia
|
||||
#' mozna poprawić przez dodanie posiiton='jitter'
|
||||
|
||||
ggplot(data = mpg, mapping = aes(x = cty, y = hwy)) +
|
||||
geom_point(position='jitter')
|
||||
|
||||
#' ## Zadanie 3
|
||||
?geom_jitter
|
||||
#' paremtry width i height
|
||||
#'
|
||||
ggplot(data = mpg, mapping = aes(x = cty, y = hwy)) +
|
||||
geom_jitter(position='jitter')
|
||||
|
||||
ggplot(data = mpg, mapping = aes(x = cty, y = hwy)) +
|
||||
geom_count(position='jitter')
|
||||
|
||||
#' obie funcje pokazują zagęszczenie, geom jitter, rozsuwa je aby było widać kazdy punkt.
|
||||
#' geom count pokazuje zagęszczenie przez parametr size.
|
||||
|
||||
#' Zadanie 4
|
||||
?geom_boxplot
|
||||
|
||||
#' domyślne dopasowanie dla geom_boxplot to 'dodge2
|
||||
|
||||
mpg %>%
|
||||
ggplot(aes(x=cty, y=factor(cyl))) +
|
||||
geom_boxplot()
|
||||
|
||||
#' # 3.9.1
|
||||
#' ## Zadanie 1
|
||||
|
||||
mpg %>%
|
||||
ggplot(aes(x=1, fill=class))+
|
||||
geom_bar() +
|
||||
coord_polar()
|
||||
|
||||
|
||||
#' ## Zadanie 2
|
||||
#' Funcjka labs, służy do dodania etykiet tetułu, opisy osi, i innnych tektów na wykresie
|
||||
|
||||
mpg %>%
|
||||
ggplot(aes(x=1, fill=class))+
|
||||
geom_bar() +
|
||||
coord_polar() +
|
||||
labs(title='Słupkotwy wykres skumulowany',
|
||||
subtitle='O kordynatach polarnych',
|
||||
y='Liczba',
|
||||
x='Wartość dummy')
|
||||
|
||||
#' ## Zadanie 3
|
||||
#' coord_map posiada więcej parametrów, np projectiom, parameters i orientation
|
||||
#' coord_quickmap, nie posiada tych parametrów.
|
||||
#' coord_map nada się do większych powirzchni świata, to jest pojekcją powierzchni sfery
|
||||
#' na plaski 2D. coord_quickmap, nadaje się do map o małym rozmiarze i zachowuje proste linie.
|
||||
|
||||
#' ## Zadanie 4
|
||||
#'
|
||||
#'
|
||||
|
||||
ggplot(data = mpg, mapping = aes(x = cty, y = hwy)) +
|
||||
geom_point() +
|
||||
geom_abline() +
|
||||
coord_fixed()
|
||||
|
||||
#' Z wykresu wnioskujemy, że spalanie w mieście i na autostradzie są skorelowane.
|
||||
#' Jeśli samochód pali dużo w mieście, to pali duzo na autostradzie i odwotnie.
|
||||
#'
|
||||
#' Linia ab, pokazuje tam prostą y=x, dzięki temu mamy odniesienie i dodatkowo możemy wywnioskować,
|
||||
#' że na galonie paliwa, na autostradzie zawsze przejedziemy wiecej niż w mieście.
|
||||
#'
|
||||
#' Coord fixed, sprawia że wartości obu osi są w tej samej skali. Obie wartości to liczba przejechanych kilometrów, więc
|
||||
#' ważne jest zachowanie jednolitej skali.
|
||||
#'
|
||||
#' Funckja abline() tworzy linię prostą y=Ax+B stąd nazawa AB Line. Domyslnie A=1, B=0 dlatego abline() to y=x
|
907
Rodział 1-3/Kurs_R.html
Normal file
907
Rodział 1-3/Kurs_R.html
Normal file
File diff suppressed because one or more lines are too long
26
Rodział 4/CV.Rmd
Normal file
26
Rodział 4/CV.Rmd
Normal file
@ -0,0 +1,26 @@
|
||||
---
|
||||
title: "Cezary Pukownik"
|
||||
output: html_document
|
||||
---
|
||||
|
||||
***
|
||||
|
||||
```{r setup, include=FALSE}
|
||||
knitr::opts_chunk$set(echo = TRUE)
|
||||
```
|
||||
|
||||
# Wykształcenie
|
||||
- **2017 - ...** - Uniwersytet Adama Mickiewicza w Poznaniu kier. Analiza i przetwarzanie danych
|
||||
- **2013 - 2016** - Uniwesytet Mikołaja Kopernika kier. Matematyka i ekonomia
|
||||
- **2010 - 2013** - I Liceum im. Mikołaja Kopernika w Toruniu spec. Matematyczno-Informatyczna
|
||||
|
||||
# Doświadczenie zawodowe
|
||||
- **2018 - ...** - Impakt S.A, jako Analityk danych
|
||||
- **2017 - 2018** - Impakt S.A, jako Młodszy analilityk
|
||||
- **2016 - 2017** - Impakt S.A, jako Kontroler
|
||||
|
||||
|
||||
> Cytat blokowy[^1]
|
||||
|
||||
|
||||
[^1]: Stopka
|
442
Rodział 4/CV.html
Normal file
442
Rodział 4/CV.html
Normal file
File diff suppressed because one or more lines are too long
99
Rodział 4/rozmiary-diamentow.Rmd
Normal file
99
Rodział 4/rozmiary-diamentow.Rmd
Normal file
@ -0,0 +1,99 @@
|
||||
---
|
||||
title: "Rozmiary diamentów"
|
||||
date: 2016-08-25
|
||||
output: html_document
|
||||
---
|
||||
|
||||
```{r setup, include = FALSE}
|
||||
|
||||
knitr::opts_chunk$set(echo = FALSE)
|
||||
|
||||
library(ggplot2)
|
||||
library(dplyr)
|
||||
library(tidyverse)
|
||||
|
||||
smaller <- diamonds %>%
|
||||
filter(carat <= 2.5)
|
||||
```
|
||||
|
||||
Mamy dane o `r nrow(diamonds)` diamentach. Tylko
|
||||
`r nrow(diamonds) - nrow(smaller)` diamentów jest większych niż 2,5 karata.
|
||||
Poniżej przedstawiony jest rozkład pozostałych:
|
||||
|
||||
```{r, echo = FALSE}
|
||||
smaller %>%
|
||||
ggplot(aes(carat)) +
|
||||
geom_freqpoly(binwidth = 0.01)
|
||||
```
|
||||
|
||||
# Wielkość diamentów w zależności od szlifu, koloru i przejrzystości.
|
||||
|
||||
## Wielkość vs. Szlif
|
||||
|
||||
```{r}
|
||||
diamonds %>%
|
||||
ggplot(aes(x=cut, y=carat)) +
|
||||
geom_boxplot()
|
||||
```
|
||||
|
||||
## Wielkość vs. Kolor
|
||||
|
||||
```{r}
|
||||
diamonds %>%
|
||||
ggplot(aes(x=color, y=carat)) +
|
||||
geom_boxplot()
|
||||
```
|
||||
|
||||
## Wielkość vs. Przejrzystość
|
||||
|
||||
```{r}
|
||||
diamonds %>%
|
||||
ggplot(aes(x=clarity, y=carat)) +
|
||||
geom_boxplot()
|
||||
```
|
||||
|
||||
## TOP 20 diamnetów pod względem wielkości
|
||||
|
||||
```{r}
|
||||
diamonds %>%
|
||||
top_n(20, wt=carat) %>%
|
||||
knitr::kable()
|
||||
```
|
||||
|
||||
|
||||
```{r}
|
||||
comma <- function(x) format(x, digits = 2, big.mark = ",")
|
||||
|
||||
|
||||
diamonds %>%
|
||||
group_by(carat > 2.5) %>%
|
||||
summarise(count=n()) %>%
|
||||
pivot_wider(names_from=`carat > 2.5`, values_from=count) %>%
|
||||
mutate(bigger_than_2.5 = as.numeric(`TRUE`)/as.numeric(sum(`TRUE`+`FALSE`))) %>%
|
||||
select(bigger_than_2.5) -> bigger_than_2.5
|
||||
|
||||
|
||||
percent <- bigger_than_2.5$bigger_than_2.5*100
|
||||
```
|
||||
|
||||
|
||||
Odsetek diamentów większych niż 2.5 karata wynosi `r comma(percent)`%.
|
||||
|
||||
|
||||
```{r a, cache=TRUE}
|
||||
lubridate::now()
|
||||
```
|
||||
|
||||
```{r b, cache=TRUE}
|
||||
lubridate::now()
|
||||
```
|
||||
|
||||
```{r c, cache=TRUE}
|
||||
lubridate::now()
|
||||
```
|
||||
|
||||
```{r d, cache=TRUE}
|
||||
lubridate::now()
|
||||
```
|
||||
|
||||
|
845
Rodział 4/rozmiary-diamentow.html
Normal file
845
Rodział 4/rozmiary-diamentow.html
Normal file
File diff suppressed because one or more lines are too long
10
Rodział 4/rozmiary-diamentow_cache/html/__packages
Normal file
10
Rodział 4/rozmiary-diamentow_cache/html/__packages
Normal file
@ -0,0 +1,10 @@
|
||||
base
|
||||
ggplot2
|
||||
dplyr
|
||||
tidyverse
|
||||
tibble
|
||||
tidyr
|
||||
readr
|
||||
purrr
|
||||
stringr
|
||||
forcats
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 54 KiB |
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
18
Rodział 4/Ćwiczenie 4.2.1
Normal file
18
Rodział 4/Ćwiczenie 4.2.1
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "R Notebook"
|
||||
output: html_notebook
|
||||
---
|
||||
|
||||
This is an [R Markdown](http://rmarkdown.rstudio.com) Notebook. When you execute code within the notebook, the results appear beneath the code.
|
||||
|
||||
Try executing this chunk by clicking the *Run* button within the chunk or by placing your cursor inside it and pressing *Ctrl+Shift+Enter*.
|
||||
|
||||
```{r}
|
||||
plot(cars)
|
||||
```
|
||||
|
||||
Add a new chunk by clicking the *Insert Chunk* button on the toolbar or by pressing *Ctrl+Alt+I*.
|
||||
|
||||
When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the *Preview* button or press *Ctrl+Shift+K* to preview the HTML file).
|
||||
|
||||
The preview shows you a rendered HTML copy of the contents of the editor. Consequently, unlike *Knit*, *Preview* does not run any R code chunks. Instead, the output of the chunk when it was last run in the editor is displayed.
|
30
Rodział 4/Ćwiczenie 421.Rmd
Normal file
30
Rodział 4/Ćwiczenie 421.Rmd
Normal file
@ -0,0 +1,30 @@
|
||||
---
|
||||
title: "Ćwiczenie 4.2.1"
|
||||
output:
|
||||
pdf_document: default
|
||||
html_document: default
|
||||
---
|
||||
|
||||
```{r setup, include=FALSE}
|
||||
knitr::opts_chunk$set(echo = TRUE)
|
||||
```
|
||||
|
||||
## R Markdown
|
||||
|
||||
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
|
||||
|
||||
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
|
||||
|
||||
```{r cars}
|
||||
summary(cars)
|
||||
```
|
||||
|
||||
## Including Plots
|
||||
|
||||
You can also embed plots, for example:
|
||||
|
||||
```{r pressure, echo=FALSE}
|
||||
plot(pressure)
|
||||
```
|
||||
|
||||
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
|
22
Rodział 4/Ćwiczenie 421_Notebook.Rmd
Normal file
22
Rodział 4/Ćwiczenie 421_Notebook.Rmd
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
title: "R Notebook"
|
||||
output:
|
||||
word_document: default
|
||||
pdf_document: default
|
||||
html_document:
|
||||
df_print: paged
|
||||
---
|
||||
|
||||
This is an [R Markdown](http://rmarkdown.rstudio.com) Notebook. When you execute code within the notebook, the results appear beneath the code.
|
||||
|
||||
Try executing this chunk by clicking the *Run* button within the chunk or by placing your cursor inside it and pressing *Ctrl+Shift+Enter*.
|
||||
|
||||
```{r}
|
||||
plot(cars)
|
||||
```
|
||||
|
||||
Add a new chunk by clicking the *Insert Chunk* button on the toolbar or by pressing *Ctrl+Alt+I*.
|
||||
|
||||
When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the *Preview* button or press *Ctrl+Shift+K* to preview the HTML file).
|
||||
|
||||
The preview shows you a rendered HTML copy of the contents of the editor. Consequently, unlike *Knit*, *Preview* does not run any R code chunks. Instead, the output of the chunk when it was last run in the editor is displayed.
|
1830
Rodział 4/Ćwiczenie 421_Notebook.nb.html
Normal file
1830
Rodział 4/Ćwiczenie 421_Notebook.nb.html
Normal file
File diff suppressed because one or more lines are too long
435
Rodział 4/Ćwiczenie-421.html
Normal file
435
Rodział 4/Ćwiczenie-421.html
Normal file
File diff suppressed because one or more lines are too long
492
Rodział 4/Ćwiczenie-421.log
Normal file
492
Rodział 4/Ćwiczenie-421.log
Normal file
@ -0,0 +1,492 @@
|
||||
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2020.4.12) 16 APR 2020 17:55
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**Ćwiczenie-421.tex
|
||||
(./Ćwiczenie-421.tex
|
||||
LaTeX2e <2019-10-01> patch level 1
|
||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2019/08/27 v1.4j Standard LaTeX document class
|
||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2019/08/27 v1.4j Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count80
|
||||
\c@section=\count81
|
||||
\c@subsection=\count82
|
||||
\c@subsubsection=\count83
|
||||
\c@paragraph=\count84
|
||||
\c@subparagraph=\count85
|
||||
\c@figure=\count86
|
||||
\c@table=\count87
|
||||
\abovecaptionskip=\skip41
|
||||
\belowcaptionskip=\skip42
|
||||
\bibindent=\dimen102
|
||||
) (/usr/share/texmf-dist/tex/latex/lm/lmodern.sty
|
||||
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
|
||||
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
|
||||
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
|
||||
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
|
||||
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
|
||||
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
|
||||
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
|
||||
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
|
||||
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
|
||||
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
|
||||
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
|
||||
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
|
||||
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
|
||||
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
|
||||
) (/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
Package: amssymb 2013/01/14 v3.01 AMS font symbols
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
|
||||
\@emptytoks=\toks14
|
||||
\symAMSa=\mathgroup4
|
||||
\symAMSb=\mathgroup5
|
||||
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
|
||||
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
|
||||
)) (/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
Package: amsmath 2019/04/01 v2.17c AMS math features
|
||||
\@mathmargin=\skip43
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
Package: amstext 2000/06/29 v2.01 AMS text
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks15
|
||||
\ex@=\dimen103
|
||||
)) (/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
|
||||
\pmbraise@=\dimen104
|
||||
) (/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
Package: amsopn 2016/03/08 v2.02 operator names
|
||||
)
|
||||
\inf@bad=\count88
|
||||
LaTeX Info: Redefining \frac on input line 227.
|
||||
\uproot@=\count89
|
||||
\leftroot@=\count90
|
||||
LaTeX Info: Redefining \overline on input line 389.
|
||||
\classnum@=\count91
|
||||
\DOTSCASE@=\count92
|
||||
LaTeX Info: Redefining \ldots on input line 486.
|
||||
LaTeX Info: Redefining \dots on input line 489.
|
||||
LaTeX Info: Redefining \cdots on input line 610.
|
||||
\Mathstrutbox@=\box27
|
||||
\strutbox@=\box28
|
||||
\big@size=\dimen105
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
|
||||
\macc@depth=\count93
|
||||
\c@MaxMatrixCols=\count94
|
||||
\dotsspace@=\muskip10
|
||||
\c@parentequation=\count95
|
||||
\dspbrk@lvl=\count96
|
||||
\tag@help=\toks16
|
||||
\row@=\count97
|
||||
\column@=\count98
|
||||
\maxfields@=\count99
|
||||
\andhelp@=\toks17
|
||||
\eqnshift@=\dimen106
|
||||
\alignsep@=\dimen107
|
||||
\tagshift@=\dimen108
|
||||
\tagwidth@=\dimen109
|
||||
\totwidth@=\dimen110
|
||||
\lineht@=\dimen111
|
||||
\@envbody=\toks18
|
||||
\multlinegap=\skip44
|
||||
\multlinetaggap=\skip45
|
||||
\mathdisplay@stack=\toks19
|
||||
LaTeX Info: Redefining \[ on input line 2855.
|
||||
LaTeX Info: Redefining \] on input line 2856.
|
||||
) (/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
|
||||
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
|
||||
) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
|
||||
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
|
||||
Package ifluatex Info: LuaTeX not detected.
|
||||
) (/usr/share/texmf-dist/tex/latex/base/fixltx2e.sty
|
||||
Package: fixltx2e 2016/12/29 v2.1a fixes to LaTeX (obsolete)
|
||||
Applying: [2015/01/01] Old fixltx2e package on input line 46.
|
||||
|
||||
Package fixltx2e Warning: fixltx2e is not required with releases after 2015
|
||||
(fixltx2e) All fixes are now in the LaTeX kernel.
|
||||
(fixltx2e) See the latexrelease package for details.
|
||||
|
||||
Already applied: [0000/00/00] Old fixltx2e package on input line 53.
|
||||
) (/usr/share/texmf-dist/tex/latex/base/fontenc.sty
|
||||
Package: fontenc 2018/08/11 v2.0j Standard LaTeX package
|
||||
(/usr/share/texmf-dist/tex/latex/base/t1enc.def
|
||||
File: t1enc.def 2018/08/11 v2.0j Standard LaTeX file
|
||||
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
|
||||
)) (/usr/share/texmf-dist/tex/latex/base/inputenc.sty
|
||||
Package: inputenc 2018/08/11 v1.3c Input encoding file
|
||||
\inpenc@prehook=\toks20
|
||||
\inpenc@posthook=\toks21
|
||||
) (/usr/share/texmf-dist/tex/latex/base/textcomp.sty
|
||||
Package: textcomp 2018/08/11 v2.0j Standard LaTeX package
|
||||
Package textcomp Info: Sub-encoding information:
|
||||
(textcomp) 5 = only ISO-Adobe without \textcurrency
|
||||
(textcomp) 4 = 5 + \texteuro
|
||||
(textcomp) 3 = 4 + \textohm
|
||||
(textcomp) 2 = 3 + \textestimated + \textcurrency
|
||||
(textcomp) 1 = TS1 - \textcircled - \t
|
||||
(textcomp) 0 = TS1 (full)
|
||||
(textcomp) Font families with sub-encoding setting implement
|
||||
(textcomp) only a restricted character set as indicated.
|
||||
(textcomp) Family '?' is the default used for unknown fonts.
|
||||
(textcomp) See the documentation for details.
|
||||
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 79.
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1enc.def
|
||||
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
|
||||
Now handling font encoding TS1 ...
|
||||
... processing UTF-8 mapping file for font encoding TS1
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1enc.dfu
|
||||
File: ts1enc.dfu 2019/07/11 v1.2j UTF-8 support for inputenc
|
||||
defining Unicode char U+00A2 (decimal 162)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00A4 (decimal 164)
|
||||
defining Unicode char U+00A5 (decimal 165)
|
||||
defining Unicode char U+00A6 (decimal 166)
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00A8 (decimal 168)
|
||||
defining Unicode char U+00A9 (decimal 169)
|
||||
defining Unicode char U+00AA (decimal 170)
|
||||
defining Unicode char U+00AC (decimal 172)
|
||||
defining Unicode char U+00AE (decimal 174)
|
||||
defining Unicode char U+00AF (decimal 175)
|
||||
defining Unicode char U+00B0 (decimal 176)
|
||||
defining Unicode char U+00B1 (decimal 177)
|
||||
defining Unicode char U+00B2 (decimal 178)
|
||||
defining Unicode char U+00B3 (decimal 179)
|
||||
defining Unicode char U+00B4 (decimal 180)
|
||||
defining Unicode char U+00B5 (decimal 181)
|
||||
defining Unicode char U+00B6 (decimal 182)
|
||||
defining Unicode char U+00B7 (decimal 183)
|
||||
defining Unicode char U+00B9 (decimal 185)
|
||||
defining Unicode char U+00BA (decimal 186)
|
||||
defining Unicode char U+00BC (decimal 188)
|
||||
defining Unicode char U+00BD (decimal 189)
|
||||
defining Unicode char U+00BE (decimal 190)
|
||||
defining Unicode char U+00D7 (decimal 215)
|
||||
defining Unicode char U+00F7 (decimal 247)
|
||||
defining Unicode char U+0192 (decimal 402)
|
||||
defining Unicode char U+02C7 (decimal 711)
|
||||
defining Unicode char U+02D8 (decimal 728)
|
||||
defining Unicode char U+02DD (decimal 733)
|
||||
defining Unicode char U+0E3F (decimal 3647)
|
||||
defining Unicode char U+2016 (decimal 8214)
|
||||
defining Unicode char U+2020 (decimal 8224)
|
||||
defining Unicode char U+2021 (decimal 8225)
|
||||
defining Unicode char U+2022 (decimal 8226)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+203B (decimal 8251)
|
||||
defining Unicode char U+203D (decimal 8253)
|
||||
defining Unicode char U+2044 (decimal 8260)
|
||||
defining Unicode char U+204E (decimal 8270)
|
||||
defining Unicode char U+2052 (decimal 8274)
|
||||
defining Unicode char U+20A1 (decimal 8353)
|
||||
defining Unicode char U+20A4 (decimal 8356)
|
||||
defining Unicode char U+20A6 (decimal 8358)
|
||||
defining Unicode char U+20A9 (decimal 8361)
|
||||
defining Unicode char U+20AB (decimal 8363)
|
||||
defining Unicode char U+20AC (decimal 8364)
|
||||
defining Unicode char U+20B1 (decimal 8369)
|
||||
defining Unicode char U+2103 (decimal 8451)
|
||||
defining Unicode char U+2116 (decimal 8470)
|
||||
defining Unicode char U+2117 (decimal 8471)
|
||||
defining Unicode char U+211E (decimal 8478)
|
||||
defining Unicode char U+2120 (decimal 8480)
|
||||
defining Unicode char U+2122 (decimal 8482)
|
||||
defining Unicode char U+2126 (decimal 8486)
|
||||
defining Unicode char U+2127 (decimal 8487)
|
||||
defining Unicode char U+212E (decimal 8494)
|
||||
defining Unicode char U+2190 (decimal 8592)
|
||||
defining Unicode char U+2191 (decimal 8593)
|
||||
defining Unicode char U+2192 (decimal 8594)
|
||||
defining Unicode char U+2193 (decimal 8595)
|
||||
defining Unicode char U+2329 (decimal 9001)
|
||||
defining Unicode char U+232A (decimal 9002)
|
||||
defining Unicode char U+2422 (decimal 9250)
|
||||
defining Unicode char U+25E6 (decimal 9702)
|
||||
defining Unicode char U+25EF (decimal 9711)
|
||||
defining Unicode char U+266A (decimal 9834)
|
||||
defining Unicode char U+27E8 (decimal 10216)
|
||||
defining Unicode char U+27E9 (decimal 10217)
|
||||
defining Unicode char U+FEFF (decimal 65279)
|
||||
))
|
||||
LaTeX Info: Redefining \oldstylenums on input line 334.
|
||||
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349.
|
||||
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350.
|
||||
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351.
|
||||
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352.
|
||||
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353.
|
||||
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354.
|
||||
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355.
|
||||
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356.
|
||||
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357.
|
||||
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358.
|
||||
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359.
|
||||
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360.
|
||||
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361.
|
||||
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362.
|
||||
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363.
|
||||
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364.
|
||||
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365.
|
||||
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366.
|
||||
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367.
|
||||
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368.
|
||||
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369.
|
||||
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370.
|
||||
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371.
|
||||
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372.
|
||||
|
||||
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373.
|
||||
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374.
|
||||
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375.
|
||||
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376.
|
||||
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377.
|
||||
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378.
|
||||
Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379.
|
||||
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380.
|
||||
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381.
|
||||
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382.
|
||||
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383.
|
||||
Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384.
|
||||
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385.
|
||||
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386.
|
||||
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387.
|
||||
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388.
|
||||
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389.
|
||||
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390.
|
||||
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391.
|
||||
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392.
|
||||
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393.
|
||||
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394.
|
||||
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395.
|
||||
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396.
|
||||
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397.
|
||||
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398.
|
||||
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399.
|
||||
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400.
|
||||
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401.
|
||||
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402.
|
||||
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403.
|
||||
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404.
|
||||
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405.
|
||||
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406.
|
||||
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407.
|
||||
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408.
|
||||
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409.
|
||||
) (/usr/share/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
Package: microtype 2019/10/10 v2.7c Micro-typographical refinements (RS)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks22
|
||||
)
|
||||
\MT@toks=\toks23
|
||||
\MT@count=\count100
|
||||
LaTeX Info: Redefining \textls on input line 790.
|
||||
\MT@outer@kern=\dimen112
|
||||
LaTeX Info: Redefining \textmicrotypecontext on input line 1347.
|
||||
\MT@listname@count=\count101
|
||||
(/usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
File: microtype-pdftex.def 2019/10/10 v2.7c Definitions specific to pdftex (RS)
|
||||
|
||||
LaTeX Info: Redefining \lsstyle on input line 914.
|
||||
LaTeX Info: Redefining \lslig on input line 914.
|
||||
\MT@outer@space=\skip46
|
||||
)
|
||||
Package microtype Info: Loading configuration file microtype.cfg.
|
||||
(/usr/share/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
File: microtype.cfg 2019/10/10 v2.7c microtype main configuration file (RS)
|
||||
)) (/usr/share/texmf-dist/tex/latex/parskip/parskip.sty
|
||||
Package: parskip 2019-01-16 v2.0c non-zero parskip adjustments
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty
|
||||
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
|
||||
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
|
||||
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty
|
||||
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty
|
||||
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
|
||||
))) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
|
||||
\etb@tempcnta=\count102
|
||||
)) (/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
Package: hyperref 2019/09/28 v7.00a Hypertext links for LaTeX
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
|
||||
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
|
||||
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
|
||||
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
|
||||
Package hobsub Info: Skipping package `infwarerr' (already loaded).
|
||||
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
|
||||
Package hobsub Info: Skipping package `ifluatex' (already loaded).
|
||||
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
|
||||
Package ifvtex Info: VTeX not detected.
|
||||
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
|
||||
Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch
|
||||
Package hobsub Info: Skipping package `etexcmds' (already loaded).
|
||||
Package hobsub Info: Skipping package `kvsetkeys' (already loaded).
|
||||
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
|
||||
Package: pdftexcmds 2019/07/25 v0.30 Utility functions of pdfTeX for LuaTeX (HO
|
||||
)
|
||||
Package pdftexcmds Info: LuaTeX not detected.
|
||||
Package pdftexcmds Info: \pdf@primitive is available.
|
||||
Package pdftexcmds Info: \pdf@ifprimitive is available.
|
||||
Package pdftexcmds Info: \pdfdraftmode found.
|
||||
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
|
||||
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
|
||||
)
|
||||
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
|
||||
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
|
||||
)
|
||||
Package hobsub Info: Skipping package `hobsub' (already loaded).
|
||||
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
|
||||
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
|
||||
Package: xcolor-patch 2016/05/16 xcolor patch
|
||||
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
|
||||
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
|
||||
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
|
||||
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
|
||||
) (/usr/share/texmf-dist/tex/latex/oberdiek/auxhook.sty
|
||||
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
|
||||
)
|
||||
\@linkdim=\dimen113
|
||||
\Hy@linkcounter=\count103
|
||||
\Hy@pagecounter=\count104
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
File: pd1enc.def 2019/09/28 v7.00a Hyperref: PDFDocEncoding definition (HO)
|
||||
Now handling font encoding PD1 ...
|
||||
... no UTF-8 mapping file for font encoding PD1
|
||||
)
|
||||
\Hy@SavedSpaceFactor=\count105
|
||||
(/usr/share/texmf-dist/tex/latex/latexconfig/hyperref.cfg
|
||||
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
|
||||
)
|
||||
Package hyperref Info: Option `unicode' set `true' on input line 4414.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
File: puenc.def 2019/09/28 v7.00a Hyperref: PDF Unicode definition (HO)
|
||||
Now handling font encoding PU ...
|
||||
... no UTF-8 mapping file for font encoding PU
|
||||
)
|
||||
Package hyperref Info: Hyper figures OFF on input line 4540.
|
||||
Package hyperref Info: Link nesting OFF on input line 4545.
|
||||
Package hyperref Info: Hyper index ON on input line 4548.
|
||||
Package hyperref Info: Plain pages OFF on input line 4555.
|
||||
Package hyperref Info: Backreferencing OFF on input line 4560.
|
||||
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
|
||||
Package hyperref Info: Bookmarks ON on input line 4793.
|
||||
\c@Hy@tempcnt=\count106
|
||||
(/usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
\Urlmuskip=\muskip11
|
||||
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
||||
)
|
||||
LaTeX Info: Redefining \url on input line 5152.
|
||||
\XeTeXLinkMargin=\dimen114
|
||||
\Fld@menulength=\count107
|
||||
\Field@Width=\dimen115
|
||||
\Fld@charsize=\dimen116
|
||||
Package hyperref Info: Hyper figures OFF on input line 6423.
|
||||
Package hyperref Info: Link nesting OFF on input line 6428.
|
||||
Package hyperref Info: Hyper index ON on input line 6431.
|
||||
Package hyperref Info: backreferencing OFF on input line 6438.
|
||||
Package hyperref Info: Link coloring OFF on input line 6443.
|
||||
Package hyperref Info: Link coloring with OCG OFF on input line 6448.
|
||||
Package hyperref Info: PDF/A mode OFF on input line 6453.
|
||||
LaTeX Info: Redefining \ref on input line 6493.
|
||||
LaTeX Info: Redefining \pageref on input line 6497.
|
||||
\Hy@abspage=\count108
|
||||
\c@Item=\count109
|
||||
\c@Hfootnote=\count110
|
||||
)
|
||||
Package hyperref Info: Driver (autodetected): hpdftex.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
File: hpdftex.def 2019/09/28 v7.00a Hyperref driver for pdfTeX
|
||||
\Fld@listcount=\count111
|
||||
\c@bookmark@seq@number=\count112
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
|
||||
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
|
||||
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
|
||||
82.
|
||||
)
|
||||
\Hy@SectionHShift=\skip47
|
||||
)
|
||||
Package hyperref Info: Option `breaklinks' set `true' on input line 34.
|
||||
(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2018/04/16 v5.8 Page Geometry
|
||||
\Gm@cnth=\count113
|
||||
\Gm@cntv=\count114
|
||||
\c@Gm@tempcnt=\count115
|
||||
\Gm@bindingoffset=\dimen117
|
||||
\Gm@wd@mp=\dimen118
|
||||
\Gm@odd@mp=\dimen119
|
||||
\Gm@even@mp=\dimen120
|
||||
\Gm@layoutwidth=\dimen121
|
||||
\Gm@layoutheight=\dimen122
|
||||
\Gm@layouthoffset=\dimen123
|
||||
\Gm@layoutvoffset=\dimen124
|
||||
\Gm@dimlist=\toks24
|
||||
) (/usr/share/texmf-dist/tex/latex/graphics/color.sty
|
||||
Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package color Info: Driver file: pdftex.def on input line 147.
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
|
||||
)) (/usr/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
|
||||
Package: fancyvrb 2019/10/22
|
||||
Style option: `fancyvrb' v3.3 <2019/10/22> (tvz)
|
||||
\FV@CodeLineNo=\count116
|
||||
\FV@InFile=\read1
|
||||
\FV@TabBox=\box29
|
||||
\c@FancyVerbLine=\count117
|
||||
\FV@StepNumber=\count118
|
||||
\FV@OutFile=\write3
|
||||
)
|
||||
|
||||
! LaTeX Error: File `framed.sty' not found.
|
||||
|
||||
Type X to quit or <RETURN> to proceed,
|
||||
or enter new name. (Default extension: sty)
|
||||
|
||||
Enter file name:
|
||||
! Emergency stop.
|
||||
<read *>
|
||||
|
||||
l.44 \definecolor
|
||||
{shadecolor}{RGB}{248,248,248}^^M
|
||||
Here is how much of TeX's memory you used:
|
||||
11718 strings out of 492167
|
||||
165218 string characters out of 6131558
|
||||
275172 words of memory out of 5000000
|
||||
16031 multiletter control sequences out of 15000+600000
|
||||
4403 words of font info for 15 fonts, out of 8000000 for 9000
|
||||
1141 hyphenation exceptions out of 8191
|
||||
39i,0n,42p,822b,270s stack positions out of 5000i,500n,10000p,200000b,80000s
|
||||
|
||||
! ==> Fatal error occurred, no output PDF file produced!
|
150
Rodział 4/Ćwiczenie-421.tex
Normal file
150
Rodział 4/Ćwiczenie-421.tex
Normal file
@ -0,0 +1,150 @@
|
||||
\PassOptionsToPackage{unicode=true}{hyperref} % options for packages loaded elsewhere
|
||||
\PassOptionsToPackage{hyphens}{url}
|
||||
%
|
||||
\documentclass[]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage{ifxetex,ifluatex}
|
||||
\usepackage{fixltx2e} % provides \textsubscript
|
||||
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{textcomp} % provides euro and other symbols
|
||||
\else % if luatex or xelatex
|
||||
\usepackage{unicode-math}
|
||||
\defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase}
|
||||
\fi
|
||||
% use upquote if available, for straight quotes in verbatim environments
|
||||
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
||||
% use microtype if available
|
||||
\IfFileExists{microtype.sty}{%
|
||||
\usepackage[]{microtype}
|
||||
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
|
||||
}{}
|
||||
\IfFileExists{parskip.sty}{%
|
||||
\usepackage{parskip}
|
||||
}{% else
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{6pt plus 2pt minus 1pt}
|
||||
}
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
pdftitle={Ćwiczenie 4.2.1},
|
||||
pdfborder={0 0 0},
|
||||
breaklinks=true}
|
||||
\urlstyle{same} % don't use monospace font for urls
|
||||
\usepackage[margin=1in]{geometry}
|
||||
\usepackage{color}
|
||||
\usepackage{fancyvrb}
|
||||
\newcommand{\VerbBar}{|}
|
||||
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]}
|
||||
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}}
|
||||
% Add ',fontsize=\small' for more characters per line
|
||||
\usepackage{framed}
|
||||
\definecolor{shadecolor}{RGB}{248,248,248}
|
||||
\newenvironment{Shaded}{\begin{snugshade}}{\end{snugshade}}
|
||||
\newcommand{\AlertTok}[1]{\textcolor[rgb]{0.94,0.16,0.16}{#1}}
|
||||
\newcommand{\AnnotationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\AttributeTok}[1]{\textcolor[rgb]{0.77,0.63,0.00}{#1}}
|
||||
\newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
|
||||
\newcommand{\BuiltInTok}[1]{#1}
|
||||
\newcommand{\CharTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\CommentTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textit{#1}}}
|
||||
\newcommand{\CommentVarTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\ConstantTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\ControlFlowTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{\textbf{#1}}}
|
||||
\newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{#1}}
|
||||
\newcommand{\DecValTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
|
||||
\newcommand{\DocumentationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\ErrorTok}[1]{\textcolor[rgb]{0.64,0.00,0.00}{\textbf{#1}}}
|
||||
\newcommand{\ExtensionTok}[1]{#1}
|
||||
\newcommand{\FloatTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
|
||||
\newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\ImportTok}[1]{#1}
|
||||
\newcommand{\InformationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\KeywordTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{\textbf{#1}}}
|
||||
\newcommand{\NormalTok}[1]{#1}
|
||||
\newcommand{\OperatorTok}[1]{\textcolor[rgb]{0.81,0.36,0.00}{\textbf{#1}}}
|
||||
\newcommand{\OtherTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{#1}}
|
||||
\newcommand{\PreprocessorTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textit{#1}}}
|
||||
\newcommand{\RegionMarkerTok}[1]{#1}
|
||||
\newcommand{\SpecialCharTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\SpecialStringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\StringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\VariableTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\VerbatimStringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\WarningTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\usepackage{graphicx,grffile}
|
||||
\makeatletter
|
||||
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
|
||||
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
|
||||
\makeatother
|
||||
% Scale images if necessary, so that they will not overflow the page
|
||||
% margins by default, and it is still possible to overwrite the defaults
|
||||
% using explicit options in \includegraphics[width, height, ...]{}
|
||||
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
|
||||
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
||||
\providecommand{\tightlist}{%
|
||||
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
||||
\setcounter{secnumdepth}{0}
|
||||
% Redefines (sub)paragraphs to behave more like sections
|
||||
\ifx\paragraph\undefined\else
|
||||
\let\oldparagraph\paragraph
|
||||
\renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}}
|
||||
\fi
|
||||
\ifx\subparagraph\undefined\else
|
||||
\let\oldsubparagraph\subparagraph
|
||||
\renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}}
|
||||
\fi
|
||||
|
||||
% set default figure placement to htbp
|
||||
\makeatletter
|
||||
\def\fps@figure{htbp}
|
||||
\makeatother
|
||||
|
||||
|
||||
\title{Ćwiczenie 4.2.1}
|
||||
\author{}
|
||||
\date{\vspace{-2.5em}}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
\hypertarget{r-markdown}{%
|
||||
\subsection{R Markdown}\label{r-markdown}}
|
||||
|
||||
This is an R Markdown document. Markdown is a simple formatting syntax
|
||||
for authoring HTML, PDF, and MS Word documents. For more details on
|
||||
using R Markdown see \url{http://rmarkdown.rstudio.com}.
|
||||
|
||||
When you click the \textbf{Knit} button a document will be generated
|
||||
that includes both content as well as the output of any embedded R code
|
||||
chunks within the document. You can embed an R code chunk like this:
|
||||
|
||||
\begin{Shaded}
|
||||
\begin{Highlighting}[]
|
||||
\KeywordTok{summary}\NormalTok{(cars)}
|
||||
\end{Highlighting}
|
||||
\end{Shaded}
|
||||
|
||||
\begin{verbatim}
|
||||
## speed dist
|
||||
## Min. : 4.0 Min. : 2.00
|
||||
## 1st Qu.:12.0 1st Qu.: 26.00
|
||||
## Median :15.0 Median : 36.00
|
||||
## Mean :15.4 Mean : 42.98
|
||||
## 3rd Qu.:19.0 3rd Qu.: 56.00
|
||||
## Max. :25.0 Max. :120.00
|
||||
\end{verbatim}
|
||||
|
||||
\hypertarget{including-plots}{%
|
||||
\subsection{Including Plots}\label{including-plots}}
|
||||
|
||||
You can also embed plots, for example:
|
||||
|
||||
\includegraphics{Ćwiczenie-421_files/figure-latex/pressure-1.pdf}
|
||||
|
||||
Note that the \texttt{echo\ =\ FALSE} parameter was added to the code
|
||||
chunk to prevent printing of the R code that generated the plot.
|
||||
|
||||
\end{document}
|
BIN
Rodział 4/Ćwiczenie-421_Notebook.docx
Normal file
BIN
Rodział 4/Ćwiczenie-421_Notebook.docx
Normal file
Binary file not shown.
1694
Rodział 4/Ćwiczenie-421_Notebook.html
Normal file
1694
Rodział 4/Ćwiczenie-421_Notebook.html
Normal file
File diff suppressed because one or more lines are too long
492
Rodział 4/Ćwiczenie-421_Notebook.log
Normal file
492
Rodział 4/Ćwiczenie-421_Notebook.log
Normal file
@ -0,0 +1,492 @@
|
||||
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2020.4.12) 16 APR 2020 17:54
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**Ćwiczenie-421_Notebook.tex
|
||||
(./Ćwiczenie-421_Notebook.tex
|
||||
LaTeX2e <2019-10-01> patch level 1
|
||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2019/08/27 v1.4j Standard LaTeX document class
|
||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2019/08/27 v1.4j Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count80
|
||||
\c@section=\count81
|
||||
\c@subsection=\count82
|
||||
\c@subsubsection=\count83
|
||||
\c@paragraph=\count84
|
||||
\c@subparagraph=\count85
|
||||
\c@figure=\count86
|
||||
\c@table=\count87
|
||||
\abovecaptionskip=\skip41
|
||||
\belowcaptionskip=\skip42
|
||||
\bibindent=\dimen102
|
||||
) (/usr/share/texmf-dist/tex/latex/lm/lmodern.sty
|
||||
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
|
||||
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
|
||||
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
|
||||
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
|
||||
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
|
||||
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
|
||||
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
|
||||
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
|
||||
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
|
||||
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
|
||||
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
|
||||
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
|
||||
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
|
||||
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
|
||||
) (/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
Package: amssymb 2013/01/14 v3.01 AMS font symbols
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
|
||||
\@emptytoks=\toks14
|
||||
\symAMSa=\mathgroup4
|
||||
\symAMSb=\mathgroup5
|
||||
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
|
||||
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
|
||||
)) (/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
Package: amsmath 2019/04/01 v2.17c AMS math features
|
||||
\@mathmargin=\skip43
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
Package: amstext 2000/06/29 v2.01 AMS text
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks15
|
||||
\ex@=\dimen103
|
||||
)) (/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
|
||||
\pmbraise@=\dimen104
|
||||
) (/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
Package: amsopn 2016/03/08 v2.02 operator names
|
||||
)
|
||||
\inf@bad=\count88
|
||||
LaTeX Info: Redefining \frac on input line 227.
|
||||
\uproot@=\count89
|
||||
\leftroot@=\count90
|
||||
LaTeX Info: Redefining \overline on input line 389.
|
||||
\classnum@=\count91
|
||||
\DOTSCASE@=\count92
|
||||
LaTeX Info: Redefining \ldots on input line 486.
|
||||
LaTeX Info: Redefining \dots on input line 489.
|
||||
LaTeX Info: Redefining \cdots on input line 610.
|
||||
\Mathstrutbox@=\box27
|
||||
\strutbox@=\box28
|
||||
\big@size=\dimen105
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
|
||||
\macc@depth=\count93
|
||||
\c@MaxMatrixCols=\count94
|
||||
\dotsspace@=\muskip10
|
||||
\c@parentequation=\count95
|
||||
\dspbrk@lvl=\count96
|
||||
\tag@help=\toks16
|
||||
\row@=\count97
|
||||
\column@=\count98
|
||||
\maxfields@=\count99
|
||||
\andhelp@=\toks17
|
||||
\eqnshift@=\dimen106
|
||||
\alignsep@=\dimen107
|
||||
\tagshift@=\dimen108
|
||||
\tagwidth@=\dimen109
|
||||
\totwidth@=\dimen110
|
||||
\lineht@=\dimen111
|
||||
\@envbody=\toks18
|
||||
\multlinegap=\skip44
|
||||
\multlinetaggap=\skip45
|
||||
\mathdisplay@stack=\toks19
|
||||
LaTeX Info: Redefining \[ on input line 2855.
|
||||
LaTeX Info: Redefining \] on input line 2856.
|
||||
) (/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
|
||||
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
|
||||
) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
|
||||
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
|
||||
Package ifluatex Info: LuaTeX not detected.
|
||||
) (/usr/share/texmf-dist/tex/latex/base/fixltx2e.sty
|
||||
Package: fixltx2e 2016/12/29 v2.1a fixes to LaTeX (obsolete)
|
||||
Applying: [2015/01/01] Old fixltx2e package on input line 46.
|
||||
|
||||
Package fixltx2e Warning: fixltx2e is not required with releases after 2015
|
||||
(fixltx2e) All fixes are now in the LaTeX kernel.
|
||||
(fixltx2e) See the latexrelease package for details.
|
||||
|
||||
Already applied: [0000/00/00] Old fixltx2e package on input line 53.
|
||||
) (/usr/share/texmf-dist/tex/latex/base/fontenc.sty
|
||||
Package: fontenc 2018/08/11 v2.0j Standard LaTeX package
|
||||
(/usr/share/texmf-dist/tex/latex/base/t1enc.def
|
||||
File: t1enc.def 2018/08/11 v2.0j Standard LaTeX file
|
||||
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
|
||||
)) (/usr/share/texmf-dist/tex/latex/base/inputenc.sty
|
||||
Package: inputenc 2018/08/11 v1.3c Input encoding file
|
||||
\inpenc@prehook=\toks20
|
||||
\inpenc@posthook=\toks21
|
||||
) (/usr/share/texmf-dist/tex/latex/base/textcomp.sty
|
||||
Package: textcomp 2018/08/11 v2.0j Standard LaTeX package
|
||||
Package textcomp Info: Sub-encoding information:
|
||||
(textcomp) 5 = only ISO-Adobe without \textcurrency
|
||||
(textcomp) 4 = 5 + \texteuro
|
||||
(textcomp) 3 = 4 + \textohm
|
||||
(textcomp) 2 = 3 + \textestimated + \textcurrency
|
||||
(textcomp) 1 = TS1 - \textcircled - \t
|
||||
(textcomp) 0 = TS1 (full)
|
||||
(textcomp) Font families with sub-encoding setting implement
|
||||
(textcomp) only a restricted character set as indicated.
|
||||
(textcomp) Family '?' is the default used for unknown fonts.
|
||||
(textcomp) See the documentation for details.
|
||||
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 79.
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1enc.def
|
||||
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
|
||||
Now handling font encoding TS1 ...
|
||||
... processing UTF-8 mapping file for font encoding TS1
|
||||
(/usr/share/texmf-dist/tex/latex/base/ts1enc.dfu
|
||||
File: ts1enc.dfu 2019/07/11 v1.2j UTF-8 support for inputenc
|
||||
defining Unicode char U+00A2 (decimal 162)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00A4 (decimal 164)
|
||||
defining Unicode char U+00A5 (decimal 165)
|
||||
defining Unicode char U+00A6 (decimal 166)
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00A8 (decimal 168)
|
||||
defining Unicode char U+00A9 (decimal 169)
|
||||
defining Unicode char U+00AA (decimal 170)
|
||||
defining Unicode char U+00AC (decimal 172)
|
||||
defining Unicode char U+00AE (decimal 174)
|
||||
defining Unicode char U+00AF (decimal 175)
|
||||
defining Unicode char U+00B0 (decimal 176)
|
||||
defining Unicode char U+00B1 (decimal 177)
|
||||
defining Unicode char U+00B2 (decimal 178)
|
||||
defining Unicode char U+00B3 (decimal 179)
|
||||
defining Unicode char U+00B4 (decimal 180)
|
||||
defining Unicode char U+00B5 (decimal 181)
|
||||
defining Unicode char U+00B6 (decimal 182)
|
||||
defining Unicode char U+00B7 (decimal 183)
|
||||
defining Unicode char U+00B9 (decimal 185)
|
||||
defining Unicode char U+00BA (decimal 186)
|
||||
defining Unicode char U+00BC (decimal 188)
|
||||
defining Unicode char U+00BD (decimal 189)
|
||||
defining Unicode char U+00BE (decimal 190)
|
||||
defining Unicode char U+00D7 (decimal 215)
|
||||
defining Unicode char U+00F7 (decimal 247)
|
||||
defining Unicode char U+0192 (decimal 402)
|
||||
defining Unicode char U+02C7 (decimal 711)
|
||||
defining Unicode char U+02D8 (decimal 728)
|
||||
defining Unicode char U+02DD (decimal 733)
|
||||
defining Unicode char U+0E3F (decimal 3647)
|
||||
defining Unicode char U+2016 (decimal 8214)
|
||||
defining Unicode char U+2020 (decimal 8224)
|
||||
defining Unicode char U+2021 (decimal 8225)
|
||||
defining Unicode char U+2022 (decimal 8226)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+203B (decimal 8251)
|
||||
defining Unicode char U+203D (decimal 8253)
|
||||
defining Unicode char U+2044 (decimal 8260)
|
||||
defining Unicode char U+204E (decimal 8270)
|
||||
defining Unicode char U+2052 (decimal 8274)
|
||||
defining Unicode char U+20A1 (decimal 8353)
|
||||
defining Unicode char U+20A4 (decimal 8356)
|
||||
defining Unicode char U+20A6 (decimal 8358)
|
||||
defining Unicode char U+20A9 (decimal 8361)
|
||||
defining Unicode char U+20AB (decimal 8363)
|
||||
defining Unicode char U+20AC (decimal 8364)
|
||||
defining Unicode char U+20B1 (decimal 8369)
|
||||
defining Unicode char U+2103 (decimal 8451)
|
||||
defining Unicode char U+2116 (decimal 8470)
|
||||
defining Unicode char U+2117 (decimal 8471)
|
||||
defining Unicode char U+211E (decimal 8478)
|
||||
defining Unicode char U+2120 (decimal 8480)
|
||||
defining Unicode char U+2122 (decimal 8482)
|
||||
defining Unicode char U+2126 (decimal 8486)
|
||||
defining Unicode char U+2127 (decimal 8487)
|
||||
defining Unicode char U+212E (decimal 8494)
|
||||
defining Unicode char U+2190 (decimal 8592)
|
||||
defining Unicode char U+2191 (decimal 8593)
|
||||
defining Unicode char U+2192 (decimal 8594)
|
||||
defining Unicode char U+2193 (decimal 8595)
|
||||
defining Unicode char U+2329 (decimal 9001)
|
||||
defining Unicode char U+232A (decimal 9002)
|
||||
defining Unicode char U+2422 (decimal 9250)
|
||||
defining Unicode char U+25E6 (decimal 9702)
|
||||
defining Unicode char U+25EF (decimal 9711)
|
||||
defining Unicode char U+266A (decimal 9834)
|
||||
defining Unicode char U+27E8 (decimal 10216)
|
||||
defining Unicode char U+27E9 (decimal 10217)
|
||||
defining Unicode char U+FEFF (decimal 65279)
|
||||
))
|
||||
LaTeX Info: Redefining \oldstylenums on input line 334.
|
||||
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349.
|
||||
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350.
|
||||
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351.
|
||||
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352.
|
||||
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353.
|
||||
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354.
|
||||
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355.
|
||||
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356.
|
||||
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357.
|
||||
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358.
|
||||
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359.
|
||||
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360.
|
||||
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361.
|
||||
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362.
|
||||
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363.
|
||||
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364.
|
||||
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365.
|
||||
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366.
|
||||
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367.
|
||||
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368.
|
||||
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369.
|
||||
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370.
|
||||
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371.
|
||||
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372.
|
||||
|
||||
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373.
|
||||
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374.
|
||||
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375.
|
||||
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376.
|
||||
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377.
|
||||
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378.
|
||||
Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379.
|
||||
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380.
|
||||
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381.
|
||||
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382.
|
||||
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383.
|
||||
Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384.
|
||||
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385.
|
||||
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386.
|
||||
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387.
|
||||
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388.
|
||||
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389.
|
||||
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390.
|
||||
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391.
|
||||
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392.
|
||||
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393.
|
||||
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394.
|
||||
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395.
|
||||
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396.
|
||||
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397.
|
||||
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398.
|
||||
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399.
|
||||
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400.
|
||||
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401.
|
||||
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402.
|
||||
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403.
|
||||
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404.
|
||||
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405.
|
||||
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406.
|
||||
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407.
|
||||
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408.
|
||||
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409.
|
||||
) (/usr/share/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
Package: microtype 2019/10/10 v2.7c Micro-typographical refinements (RS)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks22
|
||||
)
|
||||
\MT@toks=\toks23
|
||||
\MT@count=\count100
|
||||
LaTeX Info: Redefining \textls on input line 790.
|
||||
\MT@outer@kern=\dimen112
|
||||
LaTeX Info: Redefining \textmicrotypecontext on input line 1347.
|
||||
\MT@listname@count=\count101
|
||||
(/usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
File: microtype-pdftex.def 2019/10/10 v2.7c Definitions specific to pdftex (RS)
|
||||
|
||||
LaTeX Info: Redefining \lsstyle on input line 914.
|
||||
LaTeX Info: Redefining \lslig on input line 914.
|
||||
\MT@outer@space=\skip46
|
||||
)
|
||||
Package microtype Info: Loading configuration file microtype.cfg.
|
||||
(/usr/share/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
File: microtype.cfg 2019/10/10 v2.7c microtype main configuration file (RS)
|
||||
)) (/usr/share/texmf-dist/tex/latex/parskip/parskip.sty
|
||||
Package: parskip 2019-01-16 v2.0c non-zero parskip adjustments
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty
|
||||
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
|
||||
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
|
||||
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty
|
||||
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty
|
||||
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
|
||||
))) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
|
||||
\etb@tempcnta=\count102
|
||||
)) (/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
Package: hyperref 2019/09/28 v7.00a Hypertext links for LaTeX
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
|
||||
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
|
||||
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
|
||||
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
|
||||
Package hobsub Info: Skipping package `infwarerr' (already loaded).
|
||||
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
|
||||
Package hobsub Info: Skipping package `ifluatex' (already loaded).
|
||||
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
|
||||
Package ifvtex Info: VTeX not detected.
|
||||
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
|
||||
Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch
|
||||
Package hobsub Info: Skipping package `etexcmds' (already loaded).
|
||||
Package hobsub Info: Skipping package `kvsetkeys' (already loaded).
|
||||
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
|
||||
Package: pdftexcmds 2019/07/25 v0.30 Utility functions of pdfTeX for LuaTeX (HO
|
||||
)
|
||||
Package pdftexcmds Info: LuaTeX not detected.
|
||||
Package pdftexcmds Info: \pdf@primitive is available.
|
||||
Package pdftexcmds Info: \pdf@ifprimitive is available.
|
||||
Package pdftexcmds Info: \pdfdraftmode found.
|
||||
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
|
||||
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
|
||||
)
|
||||
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
|
||||
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
|
||||
)
|
||||
Package hobsub Info: Skipping package `hobsub' (already loaded).
|
||||
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
|
||||
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
|
||||
Package: xcolor-patch 2016/05/16 xcolor patch
|
||||
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
|
||||
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
|
||||
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
|
||||
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
|
||||
) (/usr/share/texmf-dist/tex/latex/oberdiek/auxhook.sty
|
||||
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
|
||||
)
|
||||
\@linkdim=\dimen113
|
||||
\Hy@linkcounter=\count103
|
||||
\Hy@pagecounter=\count104
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
File: pd1enc.def 2019/09/28 v7.00a Hyperref: PDFDocEncoding definition (HO)
|
||||
Now handling font encoding PD1 ...
|
||||
... no UTF-8 mapping file for font encoding PD1
|
||||
)
|
||||
\Hy@SavedSpaceFactor=\count105
|
||||
(/usr/share/texmf-dist/tex/latex/latexconfig/hyperref.cfg
|
||||
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
|
||||
)
|
||||
Package hyperref Info: Option `unicode' set `true' on input line 4414.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
File: puenc.def 2019/09/28 v7.00a Hyperref: PDF Unicode definition (HO)
|
||||
Now handling font encoding PU ...
|
||||
... no UTF-8 mapping file for font encoding PU
|
||||
)
|
||||
Package hyperref Info: Hyper figures OFF on input line 4540.
|
||||
Package hyperref Info: Link nesting OFF on input line 4545.
|
||||
Package hyperref Info: Hyper index ON on input line 4548.
|
||||
Package hyperref Info: Plain pages OFF on input line 4555.
|
||||
Package hyperref Info: Backreferencing OFF on input line 4560.
|
||||
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
|
||||
Package hyperref Info: Bookmarks ON on input line 4793.
|
||||
\c@Hy@tempcnt=\count106
|
||||
(/usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
\Urlmuskip=\muskip11
|
||||
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
||||
)
|
||||
LaTeX Info: Redefining \url on input line 5152.
|
||||
\XeTeXLinkMargin=\dimen114
|
||||
\Fld@menulength=\count107
|
||||
\Field@Width=\dimen115
|
||||
\Fld@charsize=\dimen116
|
||||
Package hyperref Info: Hyper figures OFF on input line 6423.
|
||||
Package hyperref Info: Link nesting OFF on input line 6428.
|
||||
Package hyperref Info: Hyper index ON on input line 6431.
|
||||
Package hyperref Info: backreferencing OFF on input line 6438.
|
||||
Package hyperref Info: Link coloring OFF on input line 6443.
|
||||
Package hyperref Info: Link coloring with OCG OFF on input line 6448.
|
||||
Package hyperref Info: PDF/A mode OFF on input line 6453.
|
||||
LaTeX Info: Redefining \ref on input line 6493.
|
||||
LaTeX Info: Redefining \pageref on input line 6497.
|
||||
\Hy@abspage=\count108
|
||||
\c@Item=\count109
|
||||
\c@Hfootnote=\count110
|
||||
)
|
||||
Package hyperref Info: Driver (autodetected): hpdftex.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
File: hpdftex.def 2019/09/28 v7.00a Hyperref driver for pdfTeX
|
||||
\Fld@listcount=\count111
|
||||
\c@bookmark@seq@number=\count112
|
||||
(/usr/share/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
|
||||
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
|
||||
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
|
||||
82.
|
||||
)
|
||||
\Hy@SectionHShift=\skip47
|
||||
)
|
||||
Package hyperref Info: Option `breaklinks' set `true' on input line 34.
|
||||
(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2018/04/16 v5.8 Page Geometry
|
||||
\Gm@cnth=\count113
|
||||
\Gm@cntv=\count114
|
||||
\c@Gm@tempcnt=\count115
|
||||
\Gm@bindingoffset=\dimen117
|
||||
\Gm@wd@mp=\dimen118
|
||||
\Gm@odd@mp=\dimen119
|
||||
\Gm@even@mp=\dimen120
|
||||
\Gm@layoutwidth=\dimen121
|
||||
\Gm@layoutheight=\dimen122
|
||||
\Gm@layouthoffset=\dimen123
|
||||
\Gm@layoutvoffset=\dimen124
|
||||
\Gm@dimlist=\toks24
|
||||
) (/usr/share/texmf-dist/tex/latex/graphics/color.sty
|
||||
Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package color Info: Driver file: pdftex.def on input line 147.
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
|
||||
)) (/usr/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
|
||||
Package: fancyvrb 2019/10/22
|
||||
Style option: `fancyvrb' v3.3 <2019/10/22> (tvz)
|
||||
\FV@CodeLineNo=\count116
|
||||
\FV@InFile=\read1
|
||||
\FV@TabBox=\box29
|
||||
\c@FancyVerbLine=\count117
|
||||
\FV@StepNumber=\count118
|
||||
\FV@OutFile=\write3
|
||||
)
|
||||
|
||||
! LaTeX Error: File `framed.sty' not found.
|
||||
|
||||
Type X to quit or <RETURN> to proceed,
|
||||
or enter new name. (Default extension: sty)
|
||||
|
||||
Enter file name:
|
||||
! Emergency stop.
|
||||
<read *>
|
||||
|
||||
l.44 \definecolor
|
||||
{shadecolor}{RGB}{248,248,248}^^M
|
||||
Here is how much of TeX's memory you used:
|
||||
11718 strings out of 492167
|
||||
165254 string characters out of 6131558
|
||||
275147 words of memory out of 5000000
|
||||
16031 multiletter control sequences out of 15000+600000
|
||||
4403 words of font info for 15 fonts, out of 8000000 for 9000
|
||||
1141 hyphenation exceptions out of 8191
|
||||
39i,0n,42p,831b,270s stack positions out of 5000i,500n,10000p,200000b,80000s
|
||||
|
||||
! ==> Fatal error occurred, no output PDF file produced!
|
141
Rodział 4/Ćwiczenie-421_Notebook.tex
Normal file
141
Rodział 4/Ćwiczenie-421_Notebook.tex
Normal file
@ -0,0 +1,141 @@
|
||||
\PassOptionsToPackage{unicode=true}{hyperref} % options for packages loaded elsewhere
|
||||
\PassOptionsToPackage{hyphens}{url}
|
||||
%
|
||||
\documentclass[]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage{ifxetex,ifluatex}
|
||||
\usepackage{fixltx2e} % provides \textsubscript
|
||||
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{textcomp} % provides euro and other symbols
|
||||
\else % if luatex or xelatex
|
||||
\usepackage{unicode-math}
|
||||
\defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase}
|
||||
\fi
|
||||
% use upquote if available, for straight quotes in verbatim environments
|
||||
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
||||
% use microtype if available
|
||||
\IfFileExists{microtype.sty}{%
|
||||
\usepackage[]{microtype}
|
||||
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
|
||||
}{}
|
||||
\IfFileExists{parskip.sty}{%
|
||||
\usepackage{parskip}
|
||||
}{% else
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{6pt plus 2pt minus 1pt}
|
||||
}
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
pdftitle={R Notebook},
|
||||
pdfborder={0 0 0},
|
||||
breaklinks=true}
|
||||
\urlstyle{same} % don't use monospace font for urls
|
||||
\usepackage[margin=1in]{geometry}
|
||||
\usepackage{color}
|
||||
\usepackage{fancyvrb}
|
||||
\newcommand{\VerbBar}{|}
|
||||
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]}
|
||||
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}}
|
||||
% Add ',fontsize=\small' for more characters per line
|
||||
\usepackage{framed}
|
||||
\definecolor{shadecolor}{RGB}{248,248,248}
|
||||
\newenvironment{Shaded}{\begin{snugshade}}{\end{snugshade}}
|
||||
\newcommand{\AlertTok}[1]{\textcolor[rgb]{0.94,0.16,0.16}{#1}}
|
||||
\newcommand{\AnnotationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\AttributeTok}[1]{\textcolor[rgb]{0.77,0.63,0.00}{#1}}
|
||||
\newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
|
||||
\newcommand{\BuiltInTok}[1]{#1}
|
||||
\newcommand{\CharTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\CommentTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textit{#1}}}
|
||||
\newcommand{\CommentVarTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\ConstantTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\ControlFlowTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{\textbf{#1}}}
|
||||
\newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{#1}}
|
||||
\newcommand{\DecValTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
|
||||
\newcommand{\DocumentationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\ErrorTok}[1]{\textcolor[rgb]{0.64,0.00,0.00}{\textbf{#1}}}
|
||||
\newcommand{\ExtensionTok}[1]{#1}
|
||||
\newcommand{\FloatTok}[1]{\textcolor[rgb]{0.00,0.00,0.81}{#1}}
|
||||
\newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\ImportTok}[1]{#1}
|
||||
\newcommand{\InformationTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\newcommand{\KeywordTok}[1]{\textcolor[rgb]{0.13,0.29,0.53}{\textbf{#1}}}
|
||||
\newcommand{\NormalTok}[1]{#1}
|
||||
\newcommand{\OperatorTok}[1]{\textcolor[rgb]{0.81,0.36,0.00}{\textbf{#1}}}
|
||||
\newcommand{\OtherTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{#1}}
|
||||
\newcommand{\PreprocessorTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textit{#1}}}
|
||||
\newcommand{\RegionMarkerTok}[1]{#1}
|
||||
\newcommand{\SpecialCharTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\SpecialStringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\StringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\VariableTok}[1]{\textcolor[rgb]{0.00,0.00,0.00}{#1}}
|
||||
\newcommand{\VerbatimStringTok}[1]{\textcolor[rgb]{0.31,0.60,0.02}{#1}}
|
||||
\newcommand{\WarningTok}[1]{\textcolor[rgb]{0.56,0.35,0.01}{\textbf{\textit{#1}}}}
|
||||
\usepackage{graphicx,grffile}
|
||||
\makeatletter
|
||||
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
|
||||
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
|
||||
\makeatother
|
||||
% Scale images if necessary, so that they will not overflow the page
|
||||
% margins by default, and it is still possible to overwrite the defaults
|
||||
% using explicit options in \includegraphics[width, height, ...]{}
|
||||
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
|
||||
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
||||
\providecommand{\tightlist}{%
|
||||
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
||||
\setcounter{secnumdepth}{0}
|
||||
% Redefines (sub)paragraphs to behave more like sections
|
||||
\ifx\paragraph\undefined\else
|
||||
\let\oldparagraph\paragraph
|
||||
\renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}}
|
||||
\fi
|
||||
\ifx\subparagraph\undefined\else
|
||||
\let\oldsubparagraph\subparagraph
|
||||
\renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}}
|
||||
\fi
|
||||
|
||||
% set default figure placement to htbp
|
||||
\makeatletter
|
||||
\def\fps@figure{htbp}
|
||||
\makeatother
|
||||
|
||||
|
||||
\title{R Notebook}
|
||||
\author{}
|
||||
\date{\vspace{-2.5em}}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
This is an \href{http://rmarkdown.rstudio.com}{R Markdown} Notebook.
|
||||
When you execute code within the notebook, the results appear beneath
|
||||
the code.
|
||||
|
||||
Try executing this chunk by clicking the \emph{Run} button within the
|
||||
chunk or by placing your cursor inside it and pressing
|
||||
\emph{Ctrl+Shift+Enter}.
|
||||
|
||||
\begin{Shaded}
|
||||
\begin{Highlighting}[]
|
||||
\KeywordTok{plot}\NormalTok{(cars)}
|
||||
\end{Highlighting}
|
||||
\end{Shaded}
|
||||
|
||||
\includegraphics{Ćwiczenie-421_Notebook_files/figure-latex/unnamed-chunk-1-1.pdf}
|
||||
|
||||
Add a new chunk by clicking the \emph{Insert Chunk} button on the
|
||||
toolbar or by pressing \emph{Ctrl+Alt+I}.
|
||||
|
||||
When you save the notebook, an HTML file containing the code and output
|
||||
will be saved alongside it (click the \emph{Preview} button or press
|
||||
\emph{Ctrl+Shift+K} to preview the HTML file).
|
||||
|
||||
The preview shows you a rendered HTML copy of the contents of the
|
||||
editor. Consequently, unlike \emph{Knit}, \emph{Preview} does not run
|
||||
any R code chunks. Instead, the output of the chunk when it was last run
|
||||
in the editor is displayed.
|
||||
|
||||
\end{document}
|
205
Rodział 5/Kurs_R- Rozdział 5.R
Normal file
205
Rodział 5/Kurs_R- Rozdział 5.R
Normal file
@ -0,0 +1,205 @@
|
||||
library(tidyverse)
|
||||
|
||||
#' # 5.2.1 Ćwiczenia
|
||||
|
||||
ggplot(mpg, aes(displ, hwy)) +
|
||||
geom_point(aes(colour = class)) +
|
||||
geom_smooth(se = FALSE, method='lm') +
|
||||
labs(
|
||||
title = 'Wraz ze wzrostem objętości silnika, spada zasięg mil na galon',
|
||||
subtitle = 'Wyjątkiem są pojazdy 2-osobowe',
|
||||
x = "Objętość skokowa silnika (l)",
|
||||
y = "Gospodarka paliwowa na autostradzie (mpg)",
|
||||
colour = "Rodzaj samochodu",
|
||||
caption = 'Cezary Pukownik'
|
||||
)
|
||||
|
||||
|
||||
#' # 5.3.1 Ćwiczenia
|
||||
#' ## Zadanie 1
|
||||
|
||||
label_11 <- tibble(
|
||||
displ = Inf,
|
||||
hwy = Inf,
|
||||
label = "Większy rozmiar silnika \njest związany z gorszą gospodarką paliwową."
|
||||
)
|
||||
|
||||
label_01 <- tibble(
|
||||
displ = -Inf,
|
||||
hwy = Inf,
|
||||
label = "Większy rozmiar silnika \njest związany z gorszą gospodarką paliwową."
|
||||
)
|
||||
|
||||
label_10 <- tibble(
|
||||
displ = Inf,
|
||||
hwy = -Inf,
|
||||
label = "Większy rozmiar silnika \njest związany z gorszą gospodarką paliwową."
|
||||
)
|
||||
|
||||
label_00 <- tibble(
|
||||
displ = -Inf,
|
||||
hwy = -Inf,
|
||||
label = "Większy rozmiar silnika \njest związany z gorszą gospodarką paliwową."
|
||||
)
|
||||
|
||||
|
||||
ggplot(mpg, aes(displ, hwy)) +
|
||||
geom_point() +
|
||||
geom_text(aes(label = label),
|
||||
data = label_11,
|
||||
vjust = "top",
|
||||
hjust = "right") +
|
||||
geom_text(aes(label = label),
|
||||
data = label_01,
|
||||
vjust = "top",
|
||||
hjust = "left") +
|
||||
geom_text(aes(label = label),
|
||||
data = label_10,
|
||||
vjust = "bottom",
|
||||
hjust = "right") +
|
||||
geom_text(aes(label = label),
|
||||
data = label_00,
|
||||
vjust = "bottom",
|
||||
hjust = "left")
|
||||
|
||||
#' ## Zadanie 2
|
||||
|
||||
?annotate()
|
||||
|
||||
#' można zrobić np w ten sposób, podając bezpośrednio np text, oraz położenie wpisująć ręcznie, bez danych.
|
||||
p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
|
||||
p + annotate('label', x = 4, y = 25, label = "Some text")
|
||||
|
||||
|
||||
# Jak etykiety utworzone za pomocą funkcji geom_text() działają z panelami?
|
||||
# Jak dodać etykietę do pojedynczego panelu? Jak umieścić różne etykiety na każdym panelu?
|
||||
# (Wskazówka: pomyśl o danych, na podstawie których utworzyłeś wykres).
|
||||
#' Zadanie 3
|
||||
|
||||
mpg %>%
|
||||
group_by(drv) %>%
|
||||
summarise(count=n()) %>%
|
||||
ggplot(aes(x=drv, y=count, label=count)) +
|
||||
geom_bar(stat='identity') +
|
||||
geom_text(size=10, nudge_y = 5)
|
||||
|
||||
mpg %>%
|
||||
group_by(drv, class) %>%
|
||||
summarise(count=n()) %>%
|
||||
ggplot(aes(x=drv, y=count, label=count)) +
|
||||
geom_bar(stat='sum') +
|
||||
geom_text(size=10, nudge_y = 5) +
|
||||
facet_wrap(~class)
|
||||
|
||||
#' na różnych panelach dane automatycznie się dostosowują do wykresu
|
||||
#' aby pokazać dane np ja jednym panelu można zrobić coś takiego:
|
||||
|
||||
mpg %>%
|
||||
group_by(drv, class) %>%
|
||||
summarise(count=n()) %>%
|
||||
mutate(label = if_else(class=='compact', as.character(count), '')) %>%
|
||||
ggplot(aes(x=drv, y=count, label=label)) +
|
||||
geom_bar(stat='sum') +
|
||||
geom_text(size=10, nudge_y = 5) +
|
||||
facet_wrap(~class) +
|
||||
labs(title='Liczba samochodów klasy compakt ma znacznie więcej\nsamochodów napędzanych na przód niż na 4 koła.',
|
||||
x = 'rodzaj napędu',
|
||||
y = 'liczba samochodów')
|
||||
|
||||
#' teraz etykiety pokazywane są tylko na panelu gdzie clasa = compact
|
||||
|
||||
#' Zadanie 4
|
||||
#'
|
||||
#' label.padding = unit(0.25, "lines"),
|
||||
#' label.r = unit(0.15, "lines"),
|
||||
#' label.size = 0.25,
|
||||
|
||||
|
||||
|
||||
#' Zadanie 5
|
||||
# Jakie są cztery argumenty funkcji arrow()?
|
||||
# Jak działają?
|
||||
# Utwórz zestaw wykresów, który zaprezentuje najważniejsze opcje.
|
||||
|
||||
?arrow()
|
||||
|
||||
#' angle
|
||||
#' length
|
||||
#' ends
|
||||
#' type
|
||||
|
||||
#' agnle - opisuje jak szeroni bedzie grot strzałki, im mniejsza wartość tym węższa bedzie strzałka
|
||||
#' lenght - opisuja jak długi bedzie grot sprzałki
|
||||
#' ends - jedno z "last", "first", "both" - wskazuje które końce lini, bedą zakończone grotem.
|
||||
#' type - jedno z "open", "closed" - wskazuje, czy grot będzie otwrty, -> jak strzła, czy zamknięty jak trojkąt -|>
|
||||
|
||||
data <- data.frame('a'=c(1,2), 'b'=c(2,3))
|
||||
|
||||
ggplot(data, aes(x=a, y=b)) +
|
||||
geom_line(arrow=arrow(angle=45, length = unit(5, "cm"), ends='both', type='closed')) +
|
||||
annotate('text', x=1.25, y=2.75, label="ładna duża strzałka :)", size=9)
|
||||
|
||||
ggplot(data, aes(x=a, y=b)) +
|
||||
geom_line(arrow=arrow(angle=25, length = unit(2, "cm"), ends='last', type='open')) +
|
||||
annotate('text', x=1.3, y=2.75, label="smukła strzałka w jedną stronę", size=7)
|
||||
|
||||
|
||||
#' ## 5.4.4 Ćwiczenia
|
||||
|
||||
#' install.packages('hexbin')
|
||||
|
||||
df <- tibble(
|
||||
x = rnorm(10000),
|
||||
y = rnorm(10000)
|
||||
)
|
||||
|
||||
ggplot(df, aes(x, y)) +
|
||||
geom_hex() +
|
||||
scale_color_gradient(low = "white", high = "red") +
|
||||
coord_fixed()
|
||||
|
||||
|
||||
#' ten kod przysłania domyslną skalę, ale nie tą którą chcemy.
|
||||
#' Poprawiony kod powinien wyglądać tak.
|
||||
#' Zmieniono _color_ na _fill_
|
||||
|
||||
ggplot(df, aes(x, y)) +
|
||||
geom_hex() +
|
||||
scale_fill_gradient(low = "white", high = "red") +
|
||||
coord_fixed()
|
||||
|
||||
?scale_fill_gradient
|
||||
|
||||
# pierwrszy argument to colors.
|
||||
|
||||
#' # Zadanie 3
|
||||
|
||||
years <- lubridate::make_date(seq(lubridate::year(min(presidential$start)),
|
||||
lubridate::year(max(presidential$end)),
|
||||
by = 4), 1, 1)
|
||||
|
||||
library(glue)
|
||||
|
||||
presidential %>%
|
||||
mutate(id = 33 + row_number()) %>%
|
||||
mutate(x_label = glue('{name} ({id})')) -> x_label
|
||||
|
||||
x_label = x_label$x_label
|
||||
x_label = as.vector(x_label)
|
||||
|
||||
presidential %>%
|
||||
mutate(id = 33 + row_number()) %>%
|
||||
ggplot(aes(start, reorder(x_label, id), colour = party)) +
|
||||
geom_point() +
|
||||
geom_segment(aes(xend = end, yend = reorder(x_label, id))) +
|
||||
scale_colour_manual(values = c(Republican = "red", Democratic = "blue")) +
|
||||
scale_x_date(NULL, breaks = years, date_labels = "'%y") +
|
||||
scale_y_discrete(breaks = x_label)
|
||||
|
||||
|
||||
|
||||
#' # Zadanie 4
|
||||
|
||||
ggplot(diamonds, aes(carat, price)) +
|
||||
geom_point(aes(colour = cut), alpha = 1/20) +
|
||||
guides(colour = guide_legend(override.aes = list(alpha = 1, size=4)))
|
625
Rodział 5/Kurs_R--Rozdział-5.html
Normal file
625
Rodział 5/Kurs_R--Rozdział-5.html
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user