Title: | Datasets and Functions Used in the Book 'Przewodnik po Pakiecie R' |
---|---|
Description: | Data sets and functions used in the polish book "Przewodnik po pakiecie R" (The Hitchhiker's Guide to the R). See more at <http://biecek.pl/R>. Among others you will find here data about housing prices, cancer patients, running times and many others. |
Authors: | Przemyslaw Biecek [aut, cre] |
Maintainer: | Przemyslaw Biecek <[email protected]> |
License: | GPL-2 |
Version: | 0.16.12 |
Built: | 2024-10-25 02:44:16 UTC |
Source: | https://github.com/cran/Przewodnik |
A subset of an auta2012 dataset from the package PogromcyDanych.
data(auta)
data(auta)
a data.frame with 2400 rows and 8 columns
The subsequent columns describe:
Marka Brand of the car
Model Model of the car
Cena Price
KM Horse power
Pojemnosc Volume of the engine
Przebieg Mileage
Paliwo Type of fuel
Produkcja Year of production
library("Przewodnik") summary(auta)
library("Przewodnik") summary(auta)
From The Cancer Genome Atlas dataset, subset for BRCA - BReast CAncer.
data(brca)
data(brca)
a data.frame with 695 rows and 16 columns
The subsequent columns describe:
time, death - survival status for patient
subtype - cancer subtype
p53mut - mutation in p53
MDM2, ..., DNAJB12 - expression of different genes
library("Przewodnik") summary(brca)
library("Przewodnik") summary(brca)
The subsequent columns describe:
Wiek age
Rozmiar.guza cancer size
Wezly.chlonne lymph nodes
Nowotwor cancer
Receptory.estrogenowe estrogen receptors
Receptory.progesteronowe progesteron receptors
Niepowodzenia failures
Okres.bez.wznowy time of observation
VEGF vascular endothelial growth factor
data(daneO)
data(daneO)
a data.frame with 97 rows and 9 columns
library("Przewodnik") summary(daneO)
library("Przewodnik") summary(daneO)
The subsequent columns describe:
wiek Age
wyksztalcenie Education
st.cywilny Martial status
plec Sex
praca Work status
cisnienie.skurczowe Blood pressure
cisnienie.rozkurczowe Blood pressure
data(daneSoc)
data(daneSoc)
a data.frame with 204 rows and 7 columns
library("Przewodnik") summary(daneSoc)
library("Przewodnik") summary(daneSoc)
Data from Warsaw marathons 2013 - 2016.
data(maratony)
data(maratony)
a data.frame with 70736 rows and 14 columns
Orlen Maraton Warszawski - Based on https://www.orlenmarathon.pl/ database.
Polmaraton Warszawski - Based on http://pzupolmaratonwarszawski.com/ database.
The subsequent columns describe:
nazwisko_imie First and Last name
nr.startowy Number
plec Gender
rok Year
biegi_uliczne Name of the marathon
czas_brutto Gross Time
czas_brutto_sec Gross Time in secs
czas_netto Net Time
czas_netto_sec Net Time in sec
grup_wiek Age group
kategoria Category
kraj_nazwa Country
miejsce_kat Place in Category
miejsce_open Place in Open
Prepared by Krzysztof Trajkowski.
library("Przewodnik") summary(maratony)
library("Przewodnik") summary(maratony)
The subsequent columns describe:
cena price
pokoi number of rooms
powierzchnia surface
dzielnica district
typ.budynku house type
data(mieszkania)
data(mieszkania)
a data.frame with 200 rows and 5 columns
library("Przewodnik") summary(mieszkania)
library("Przewodnik") summary(mieszkania)
Mortality data for Poland. Based on http://www.mortality.org/ database. The subsequent columns describe:
Year. Year or range of years (for both period and cohort data)
Age. Age group for n-year interval from exact age x to just before exact age x+n, where n=1, 4, 5, or infinity (open age interval)
m(x). Central death rate between ages x and x+n
q(x). Probability of death between ages x and x+n
a(x). Average length of survival between ages x and x+n for persons dying in the interval
l(x). Number of survivors at exact age x, assuming l(0) = 100,000
d(x). Number of deaths between ages x and x+n
L(x). Number of person-years lived between ages x and x+n
T(x). Number of person-years remaining after exact age x
e(x). Life expectancy at exact age x (in years)
data(przezycia)
data(przezycia)
a data.frame with 11544 rows and 11 columns
Find more at http://www.mortality.org/Public/ExplanatoryNotes.php#CompleteDataSeries
library("Przewodnik") summary(przezycia)
library("Przewodnik") summary(przezycia)
Data about School Injuries in Poland in school years 2012/2013 and 2013/2014. Based on http://www.cie.men.gov.pl/index.php/dane-statystyczne/137.html
data(szkolne_wypadki)
data(szkolne_wypadki)
a data.frame with 20958 rows and 7 columns
The subsequent columns describe:
wojewodztwo Region
szkola Type of school
przypadek How heavy was the injury?
rok.szkolny school year
typ Is is about part of body or about type of injury
rodzaj Detailed group
liczba Number of injuries
Prepared by Krzysztof Trajkowski.
library("Przewodnik") summary(szkolne_wypadki)
library("Przewodnik") summary(szkolne_wypadki)
Based on the titanic dataset from titanic package (from kaggle).
data(titanic)
data(titanic)
a data.frame with 891 rows and 6 columns
The subsequent columns describe:
Survived 1 - survived, 0 - death
Pclass class, from 1 to 3
Sex sex
Age age
Fare fare
Embarked embarked
library("Przewodnik") summary(titanic)
library("Przewodnik") summary(titanic)