Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
EhrmannS committed Oct 21, 2024
1 parent 3c91d1f commit 95c2250
Show file tree
Hide file tree
Showing 27 changed files with 4,377 additions and 4,377 deletions.
140 changes: 70 additions & 70 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,70 +1,70 @@
Package: tabshiftr
Title: Reshape Disorganised Messy Data
Version: 0.5.1
Authors@R:
c(person(given = "Steffen",
family = "Ehrmann",
role = c("aut", "cre"),
email = "steffen.ehrmann@posteo.de",
comment = c(ORCID = "0000-0002-2958-0796")),
person(given = "Tsvetelina",
family = "Tomova",
role = "ctb",
email = "tsvetelina.tomova@gmail.com"),
person(given = "Carsten",
family = "Meyer",
role = "aut",
email = "carsten.meyer@idiv.de",
comment = c(ORCID = "0000-0003-3927-5856")),
person(given = "Abdualmaged",
family = "Alhemiary",
role = "ctb"),
person(given = "Amelie",
family = "Haas",
role = "ctb"),
person(given = "Annika",
family = "Ertel",
role = "ctb"),
person(given = "Arne",
family = "Rümmler",
role = "ctb",
email = "arne.ruemmler@tu-dresden.de",
comment = c(ORCID = "0000-0001-8637-9071")),
person(given = "Caroline",
family = "Busse",
role = "ctb"))
Description: Helps the user to build and register schema descriptions of
disorganised (messy) tables. Disorganised tables are tables that are
not in a topologically coherent form, where packages such as 'tidyr' could
be used for reshaping. The schema description documents the arrangement of
input tables and is used to reshape them into a standardised (tidy) output
format.
URL: https://luckinet.github.io/tabshiftr/, https://github.com/luckinet/tabshiftr
BugReports: https://github.com/luckinet/tabshiftr/issues
Depends:
R (>= 2.10)
Language: en-gb
License: GPL-3
Encoding: UTF-8
LazyData: true
Imports:
checkmate,
rlang,
tibble,
dplyr,
tidyr,
magrittr,
tidyselect,
testthat,
crayon,
methods,
purrr,
stringr,
lubridate
RoxygenNote: 7.3.2
Suggests:
knitr,
rmarkdown,
bookdown,
readr
VignetteBuilder: knitr
Package: tabshiftr
Title: Reshape Disorganised Messy Data
Version: 0.5.1
Authors@R:
c(person(given = "Steffen",
family = "Ehrmann",
role = c("aut", "cre"),
email = "steffen.ehrmann@posteo.de",
comment = c(ORCID = "0000-0002-2958-0796")),
person(given = "Tsvetelina",
family = "Tomova",
role = "ctb",
email = "tsvetelina.tomova@gmail.com"),
person(given = "Carsten",
family = "Meyer",
role = "aut",
email = "carsten.meyer@idiv.de",
comment = c(ORCID = "0000-0003-3927-5856")),
person(given = "Abdualmaged",
family = "Alhemiary",
role = "ctb"),
person(given = "Amelie",
family = "Haas",
role = "ctb"),
person(given = "Annika",
family = "Ertel",
role = "ctb"),
person(given = "Arne",
family = "Rümmler",
role = "ctb",
email = "arne.ruemmler@tu-dresden.de",
comment = c(ORCID = "0000-0001-8637-9071")),
person(given = "Caroline",
family = "Busse",
role = "ctb"))
Description: Helps the user to build and register schema descriptions of
disorganised (messy) tables. Disorganised tables are tables that are
not in a topologically coherent form, where packages such as 'tidyr' could
be used for reshaping. The schema description documents the arrangement of
input tables and is used to reshape them into a standardised (tidy) output
format.
URL: https://luckinet.github.io/tabshiftr/, https://github.com/luckinet/tabshiftr
BugReports: https://github.com/luckinet/tabshiftr/issues
Depends:
R (>= 2.10)
Language: en-gb
License: GPL-3
Encoding: UTF-8
LazyData: true
Imports:
checkmate,
rlang,
tibble,
dplyr,
tidyr,
magrittr,
tidyselect,
testthat,
crayon,
methods,
purrr,
stringr,
lubridate
RoxygenNote: 7.3.2
Suggests:
knitr,
rmarkdown,
bookdown,
readr
VignetteBuilder: knitr
224 changes: 112 additions & 112 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,112 +1,112 @@
# Generated by roxygen2: do not edit by hand

export("%>%")
export(.find)
export(.sum)
export(getClusterVar)
export(getGroupVar)
export(getIDVars)
export(getObsVars)
export(reorganise)
export(setCluster)
export(setFilter)
export(setFormat)
export(setGroups)
export(setIDVar)
export(setObsVar)
export(validateInput)
export(validateSchema)
importFrom(checkmate,assert)
importFrom(checkmate,assertCharacter)
importFrom(checkmate,assertChoice)
importFrom(checkmate,assertClass)
importFrom(checkmate,assertDataFrame)
importFrom(checkmate,assertFunction)
importFrom(checkmate,assertIntegerish)
importFrom(checkmate,assertList)
importFrom(checkmate,assertLogical)
importFrom(checkmate,assertNames)
importFrom(checkmate,assertNumeric)
importFrom(checkmate,assertSetEqual)
importFrom(checkmate,assertSubset)
importFrom(checkmate,assertTRUE)
importFrom(checkmate,expect_list)
importFrom(checkmate,expect_names)
importFrom(checkmate,expect_tibble)
importFrom(checkmate,testCharacter)
importFrom(checkmate,testClass)
importFrom(checkmate,testFunction)
importFrom(checkmate,testIntegerish)
importFrom(checkmate,testList)
importFrom(crayon,yellow)
importFrom(dplyr,across)
importFrom(dplyr,add_row)
importFrom(dplyr,arrange)
importFrom(dplyr,arrange_at)
importFrom(dplyr,bind_cols)
importFrom(dplyr,bind_rows)
importFrom(dplyr,case_when)
importFrom(dplyr,distinct)
importFrom(dplyr,everything)
importFrom(dplyr,filter)
importFrom(dplyr,full_join)
importFrom(dplyr,group_by)
importFrom(dplyr,if_any)
importFrom(dplyr,if_else)
importFrom(dplyr,left_join)
importFrom(dplyr,mutate)
importFrom(dplyr,mutate_all)
importFrom(dplyr,n)
importFrom(dplyr,na_if)
importFrom(dplyr,pull)
importFrom(dplyr,right_join)
importFrom(dplyr,row_number)
importFrom(dplyr,select)
importFrom(dplyr,slice)
importFrom(dplyr,summarise)
importFrom(dplyr,ungroup)
importFrom(lubridate,is.Date)
importFrom(magrittr,"%>%")
importFrom(methods,new)
importFrom(purrr,map)
importFrom(purrr,map_chr)
importFrom(purrr,map_dfc)
importFrom(purrr,map_int)
importFrom(purrr,map_lgl)
importFrom(purrr,reduce)
importFrom(purrr,set_names)
importFrom(rlang,`:=`)
importFrom(rlang,enquo)
importFrom(rlang,enquos)
importFrom(rlang,eval_tidy)
importFrom(rlang,is_integerish)
importFrom(rlang,is_primitive)
importFrom(rlang,is_quosure)
importFrom(rlang,prim_name)
importFrom(stats,na.omit)
importFrom(stringr,coll)
importFrom(stringr,str_c)
importFrom(stringr,str_count)
importFrom(stringr,str_detect)
importFrom(stringr,str_extract_all)
importFrom(stringr,str_remove_all)
importFrom(stringr,str_split)
importFrom(stringr,str_sub)
importFrom(testthat,expect_identical)
importFrom(tibble,as_tibble)
importFrom(tibble,as_tibble_row)
importFrom(tibble,rownames_to_column)
importFrom(tibble,tibble)
importFrom(tidyr,everything)
importFrom(tidyr,extract)
importFrom(tidyr,fill)
importFrom(tidyr,pivot_longer)
importFrom(tidyr,pivot_wider)
importFrom(tidyr,replace_na)
importFrom(tidyr,separate)
importFrom(tidyr,separate_longer_delim)
importFrom(tidyr,unite)
importFrom(tidyselect,all_of)
importFrom(tidyselect,everything)
importFrom(tidyselect,starts_with)
importFrom(tidyselect,where)
# Generated by roxygen2: do not edit by hand
export("%>%")
export(.find)
export(.sum)
export(getClusterVar)
export(getGroupVar)
export(getIDVars)
export(getObsVars)
export(reorganise)
export(setCluster)
export(setFilter)
export(setFormat)
export(setGroups)
export(setIDVar)
export(setObsVar)
export(validateInput)
export(validateSchema)
importFrom(checkmate,assert)
importFrom(checkmate,assertCharacter)
importFrom(checkmate,assertChoice)
importFrom(checkmate,assertClass)
importFrom(checkmate,assertDataFrame)
importFrom(checkmate,assertFunction)
importFrom(checkmate,assertIntegerish)
importFrom(checkmate,assertList)
importFrom(checkmate,assertLogical)
importFrom(checkmate,assertNames)
importFrom(checkmate,assertNumeric)
importFrom(checkmate,assertSetEqual)
importFrom(checkmate,assertSubset)
importFrom(checkmate,assertTRUE)
importFrom(checkmate,expect_list)
importFrom(checkmate,expect_names)
importFrom(checkmate,expect_tibble)
importFrom(checkmate,testCharacter)
importFrom(checkmate,testClass)
importFrom(checkmate,testFunction)
importFrom(checkmate,testIntegerish)
importFrom(checkmate,testList)
importFrom(crayon,yellow)
importFrom(dplyr,across)
importFrom(dplyr,add_row)
importFrom(dplyr,arrange)
importFrom(dplyr,arrange_at)
importFrom(dplyr,bind_cols)
importFrom(dplyr,bind_rows)
importFrom(dplyr,case_when)
importFrom(dplyr,distinct)
importFrom(dplyr,everything)
importFrom(dplyr,filter)
importFrom(dplyr,full_join)
importFrom(dplyr,group_by)
importFrom(dplyr,if_any)
importFrom(dplyr,if_else)
importFrom(dplyr,left_join)
importFrom(dplyr,mutate)
importFrom(dplyr,mutate_all)
importFrom(dplyr,n)
importFrom(dplyr,na_if)
importFrom(dplyr,pull)
importFrom(dplyr,right_join)
importFrom(dplyr,row_number)
importFrom(dplyr,select)
importFrom(dplyr,slice)
importFrom(dplyr,summarise)
importFrom(dplyr,ungroup)
importFrom(lubridate,is.Date)
importFrom(magrittr,"%>%")
importFrom(methods,new)
importFrom(purrr,map)
importFrom(purrr,map_chr)
importFrom(purrr,map_dfc)
importFrom(purrr,map_int)
importFrom(purrr,map_lgl)
importFrom(purrr,reduce)
importFrom(purrr,set_names)
importFrom(rlang,`:=`)
importFrom(rlang,enquo)
importFrom(rlang,enquos)
importFrom(rlang,eval_tidy)
importFrom(rlang,is_integerish)
importFrom(rlang,is_primitive)
importFrom(rlang,is_quosure)
importFrom(rlang,prim_name)
importFrom(stats,na.omit)
importFrom(stringr,coll)
importFrom(stringr,str_c)
importFrom(stringr,str_count)
importFrom(stringr,str_detect)
importFrom(stringr,str_extract_all)
importFrom(stringr,str_remove_all)
importFrom(stringr,str_split)
importFrom(stringr,str_sub)
importFrom(testthat,expect_identical)
importFrom(tibble,as_tibble)
importFrom(tibble,as_tibble_row)
importFrom(tibble,rownames_to_column)
importFrom(tibble,tibble)
importFrom(tidyr,everything)
importFrom(tidyr,extract)
importFrom(tidyr,fill)
importFrom(tidyr,pivot_longer)
importFrom(tidyr,pivot_wider)
importFrom(tidyr,replace_na)
importFrom(tidyr,separate)
importFrom(tidyr,separate_longer_delim)
importFrom(tidyr,unite)
importFrom(tidyselect,all_of)
importFrom(tidyselect,everything)
importFrom(tidyselect,starts_with)
importFrom(tidyselect,where)
Loading

0 comments on commit 95c2250

Please sign in to comment.