diff --git a/.Rbuildignore b/.Rbuildignore index 8526030117403f24bdfd68465e70818e41cc5826..b6c75b8a23b8d554ec12ef1f7ac271fa0b0c65ca 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -1,3 +1,4 @@ ^sozoeko1\.Rproj$ ^\.Rproj\.user$ ^data-raw$ +^LICENSE\.md$ diff --git a/DESCRIPTION b/DESCRIPTION index b254f30d74fb80c5d0c4ac23154f446e0eb1c2ca..ef4a3e7cc563c49c53f3537bb8a1739f3f6e7f5b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,8 +4,7 @@ Version: 0.0.0.9000 Authors@R: person("Simon", "Bartke", , "simon.bartke@uni-hamburg.de", role = c("aut", "cre")) Description: Dieses Paket stellt sechs Datensätze (cobb-douglas, eduinc, food, gfc, phillips und qtm) zur Verfügung, welche im Rahmen der Lehre des Kurses Oekonometrie 1 verwendet werden. -License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a - license +License: MIT + file LICENSE Encoding: UTF-8 Roxygen: list(markdown = TRUE) RoxygenNote: 7.1.2 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..750ec70cb0303b9b71c9bcefce69db07b56abfd9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,2 @@ +YEAR: 2022 +COPYRIGHT HOLDER: sozoeko1 authors diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..c96d717842bf67a9915df9e60c17610b71ee18eb --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2022 sozoeko1 authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/R/cobb_douglas.R b/R/cobb_douglas.R new file mode 100644 index 0000000000000000000000000000000000000000..11b9216ed862786b9b9f57ad5fdb0eac5ef23c0e --- /dev/null +++ b/R/cobb_douglas.R @@ -0,0 +1,12 @@ +#' Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen) +#' +#' Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +#' +#' @format A tibble with 33 rows and 3 variables: +#' \describe{ +#' \item{k}{dbl ?} +#' \item{l}{dbl ?} +#' \item{q}{dbl ?} +#' } +#' @source \url{Quellangabe (hier beispielsweise als Link)} +"cobb_douglas" # Name Ihres Datensatzes diff --git a/R/eduinc.R b/R/eduinc.R new file mode 100644 index 0000000000000000000000000000000000000000..63d11a29d157b1c13fd4a04371595a0aa19b1e36 --- /dev/null +++ b/R/eduinc.R @@ -0,0 +1,15 @@ +#' Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen) +#' +#' Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +#' +#' @format A tibble with 428 rows and 6 variables: +#' \describe{ +#' \item{faminc}{dbl ?} +#' \item{he}{dbl ?} +#' \item{we}{dbl ?} +#' \item{kl6}{dbl ?} +#' \item{xtra_x5}{dbl ?} +#' \item{xtra_x6}{dbl ?} +#' } +#' @source \url{Quellangabe (hier beispielsweise als Link)} +"eduinc" # Name Ihres Datensatzes diff --git a/R/food.R b/R/food.R new file mode 100644 index 0000000000000000000000000000000000000000..478a69e4cb4b50cc3f313c5f9e6b090d5a399f3d --- /dev/null +++ b/R/food.R @@ -0,0 +1,12 @@ +#' Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen) +#' +#' Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +#' +#' @format A tibble with 40 rows and 3 variables: +#' \describe{ +#' \item{X}{dbl ?} +#' \item{food_exp}{dbl ?} +#' \item{income}{dbl ?} +#' } +#' @source \url{Quellangabe (hier beispielsweise als Link)} +"food" # Name Ihres Datensatzes diff --git a/R/phillips.R b/R/phillips.R new file mode 100644 index 0000000000000000000000000000000000000000..e9a52442a2a5518244622721eab746e3ce8e7b0b --- /dev/null +++ b/R/phillips.R @@ -0,0 +1,12 @@ +#' Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen) +#' +#' Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +#' +#' @format A tibble with 91 rows and 3 variables: +#' \describe{ +#' \item{obs}{chr ?} +#' \item{inf}{dbl ?} +#' \item{u}{dbl ?} +#' } +#' @source \url{Quellangabe (hier beispielsweise als Link)} +"phillips" # Name Ihres Datensatzes diff --git a/R/qtm.R b/R/qtm.R new file mode 100644 index 0000000000000000000000000000000000000000..9a6c5baac89cd25b229b4ee1ce7c4f797a7a2d0c --- /dev/null +++ b/R/qtm.R @@ -0,0 +1,12 @@ +#' Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen) +#' +#' Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +#' +#' @format A tibble with 180 rows and 3 variables: +#' \describe{ +#' \item{obs}{chr ?} +#' \item{m}{dbl ?} +#' \item{p}{dbl ?} +#' } +#' @source \url{Quellangabe (hier beispielsweise als Link)} +"qtm" # Name Ihres Datensatzes diff --git a/R/sozoeko1.R b/R/sozoeko1.R new file mode 100644 index 0000000000000000000000000000000000000000..9493fd4a09c603332f9d9bacaaec76b9e2479dd3 --- /dev/null +++ b/R/sozoeko1.R @@ -0,0 +1,26 @@ +#' sozoeko1: Ein Paket, welches die Lehre der Veranstaltung Oekonometrie 1 im Bachelor Sozialoekonomie an der WiSo-Fakultaet der Uni Hamburg unterstuetzt. +#' +#' Das sozoeko1 Paket besteht aus sechs Datensätzen, welche im Rahmen der Lehre verwendet werden: +#' cobb-douglas, eduinc, food, gfc, phillips und qtm. +#' +#' @section cobb-douglas Datensatz: +#' XY... +#' +#' @section eduinc Datensatz: +#' XY... +#' +#' @section food Datensatz: +#' XY... +#' +#' @section gfc Datensatz: +#' XY... +#' +#' @section phillips Datensatz: +#' XY... +#' +#' @section qtm Datensatz: +#' XY... +#' +#' @docType package +#' @name sozoeko1 +NULL diff --git a/man/cobb_douglas.Rd b/man/cobb_douglas.Rd new file mode 100644 index 0000000000000000000000000000000000000000..cbc68933afcbf8fdc1169b610d41798dd18b5437 --- /dev/null +++ b/man/cobb_douglas.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/cobb_douglas.R +\docType{data} +\name{cobb_douglas} +\alias{cobb_douglas} +\title{Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen)} +\format{ +A tibble with 33 rows and 3 variables: +\describe{ +\item{k}{dbl ?} +\item{l}{dbl ?} +\item{q}{dbl ?} +} +} +\source{ +\url{Quellangabe (hier beispielsweise als Link)} +} +\usage{ +cobb_douglas +} +\description{ +Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +} +\keyword{datasets} diff --git a/man/eduinc.Rd b/man/eduinc.Rd new file mode 100644 index 0000000000000000000000000000000000000000..a4f82f27274e70ec0aff8262849efdd9fbdc871f --- /dev/null +++ b/man/eduinc.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/eduinc.R +\docType{data} +\name{eduinc} +\alias{eduinc} +\title{Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen)} +\format{ +A tibble with 428 rows and 6 variables: +\describe{ +\item{faminc}{dbl ?} +\item{he}{dbl ?} +\item{we}{dbl ?} +\item{kl6}{dbl ?} +\item{xtra_x5}{dbl ?} +\item{xtra_x6}{dbl ?} +} +} +\source{ +\url{Quellangabe (hier beispielsweise als Link)} +} +\usage{ +eduinc +} +\description{ +Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +} +\keyword{datasets} diff --git a/man/food.Rd b/man/food.Rd new file mode 100644 index 0000000000000000000000000000000000000000..84a96efbca28ad3b88e6aa5118fbfceb8a63b438 --- /dev/null +++ b/man/food.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/food.R +\docType{data} +\name{food} +\alias{food} +\title{Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen)} +\format{ +A tibble with 40 rows and 3 variables: +\describe{ +\item{X}{dbl ?} +\item{food_exp}{dbl ?} +\item{income}{dbl ?} +} +} +\source{ +\url{Quellangabe (hier beispielsweise als Link)} +} +\usage{ +food +} +\description{ +Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +} +\keyword{datasets} diff --git a/man/phillips.Rd b/man/phillips.Rd new file mode 100644 index 0000000000000000000000000000000000000000..1fa0185d801e6eb14d84e14c70997f5f50af2ce7 --- /dev/null +++ b/man/phillips.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/phillips.R +\docType{data} +\name{phillips} +\alias{phillips} +\title{Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen)} +\format{ +A tibble with 91 rows and 3 variables: +\describe{ +\item{obs}{chr ?} +\item{inf}{dbl ?} +\item{u}{dbl ?} +} +} +\source{ +\url{Quellangabe (hier beispielsweise als Link)} +} +\usage{ +phillips +} +\description{ +Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +} +\keyword{datasets} diff --git a/man/qtm.Rd b/man/qtm.Rd new file mode 100644 index 0000000000000000000000000000000000000000..a09221e22fc86e1336bcae38913e82310ad677c4 --- /dev/null +++ b/man/qtm.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/qtm.R +\docType{data} +\name{qtm} +\alias{qtm} +\title{Kurze Beschreibung des Datensatzes (hier eigene Beschreibung ergaenzen)} +\format{ +A tibble with 180 rows and 3 variables: +\describe{ +\item{obs}{chr ?} +\item{m}{dbl ?} +\item{p}{dbl ?} +} +} +\source{ +\url{Quellangabe (hier beispielsweise als Link)} +} +\usage{ +qtm +} +\description{ +Etwas laengere Beschreibung des Datensatzes (hier eigene Besachreibung ergaenzen) +} +\keyword{datasets} diff --git a/man/sozoeko1.Rd b/man/sozoeko1.Rd new file mode 100644 index 0000000000000000000000000000000000000000..cf5b5c9916c945d629ca83f13dc76be9ed279d55 --- /dev/null +++ b/man/sozoeko1.Rd @@ -0,0 +1,40 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/sozoeko1.R +\docType{package} +\name{sozoeko1} +\alias{sozoeko1} +\title{sozoeko1: Ein Paket, welches die Lehre der Veranstaltung Oekonometrie 1 im Bachelor Sozialoekonomie an der WiSo-Fakultaet der Uni Hamburg unterstuetzt.} +\description{ +Das sozoeko1 Paket besteht aus sechs Datensätzen, welche im Rahmen der Lehre verwendet werden: +cobb-douglas, eduinc, food, gfc, phillips und qtm. +} +\section{cobb-douglas Datensatz}{ + +XY... +} + +\section{eduinc Datensatz}{ + +XY... +} + +\section{food Datensatz}{ + +XY... +} + +\section{gfc Datensatz}{ + +XY... +} + +\section{phillips Datensatz}{ + +XY... +} + +\section{qtm Datensatz}{ + +XY... +} +