Skip to content

Commit

Permalink
Match new devtools requirements (#47)
Browse files Browse the repository at this point in the history
* Match new devtools requirements
* Start editing unittest to make them more readable
  • Loading branch information
ELToulemonde authored Jan 2, 2019
1 parent 5a5a195 commit 30dd044
Show file tree
Hide file tree
Showing 51 changed files with 2,885 additions and 6,181 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
README.md
CONTRIBUTING.rst
^\.travis\.yml$
^\.idea$
46 changes: 23 additions & 23 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
Package: dataPreparation
Title: Automated Data Preparation
Version: 0.3.8
Authors@R: person("Emmanuel-Lin", "Toulemonde", email = "[email protected]", role = c("aut", "cre"))
Description: Do most of the painful data preparation for a data science project with a minimum amount of code; Take advantages of data.table efficiency and use some algorithmic trick in order to perform data preparation in a time and RAM efficient way.
Depends:
R (>= 3.3.0),
lubridate,
stringr,
Matrix,
progress
License: GPL-3 | file LICENSE
LazyData: true
Encoding: UTF-8
RoxygenNote: 6.1.0
Suggests: knitr,
rmarkdown,
kableExtra,
pander,
testthat (>= 2.0.0)
VignetteBuilder: knitr
Imports: data.table
BugReports: https://github.com/ELToulemonde/dataPreparation/issues
Package: dataPreparation
Title: Automated Data Preparation
Version: 0.3.9
Authors@R: person("Emmanuel-Lin", "Toulemonde", email = "[email protected]", role = c("aut", "cre"))
Description: Do most of the painful data preparation for a data science project with a minimum amount of code; Take advantages of data.table efficiency and use some algorithmic trick in order to perform data preparation in a time and RAM efficient way.
Depends:
R (>= 3.3.0),
lubridate,
stringr,
Matrix,
progress
License: GPL-3 | file LICENSE
LazyData: true
Encoding: UTF-8
RoxygenNote: 6.1.1
Suggests: knitr,
rmarkdown,
kableExtra,
pander,
testthat (>= 2.0.0)
VignetteBuilder: knitr
Imports: data.table
BugReports: https://github.com/ELToulemonde/dataPreparation/issues
100 changes: 50 additions & 50 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
# Generated by roxygen2: do not edit by hand
export(aggregateByKey)
export(as.POSIXct_fast)
export(build_bins)
export(build_encoding)
export(build_scales)
export(dataPrepNews)
export(dateFormatUnifier)
export(description)
export(fastDiscretization)
export(fastFilterVariables)
export(fastHandleNa)
export(fastIsEqual)
export(fastRound)
export(fastScale)
export(findAndTransformDates)
export(findAndTransformNumerics)
export(generateDateDiffs)
export(generateFactorFromDate)
export(generateFromCharacter)
export(generateFromFactor)
export(identifyDates)
export(one_hot_encoder)
export(prepareSet)
export(sameShape)
export(setAsNumericMatrix)
export(setColAsCharacter)
export(setColAsDate)
export(setColAsFactor)
export(setColAsNumeric)
export(shapeSet)
export(unFactor)
export(whichAreBijection)
export(whichAreConstant)
export(whichAreInDouble)
export(whichAreIncluded)
import(data.table)
importFrom(Matrix,sparse.model.matrix)
importFrom(lubridate,is.Date)
importFrom(lubridate,is.POSIXct)
importFrom(lubridate,is.POSIXlt)
importFrom(lubridate,is.POSIXt)
importFrom(lubridate,parse_date_time)
importFrom(progress,progress_bar)
importFrom(stats,as.formula)
importFrom(stats,contrasts)
importFrom(stats,model.matrix)
importFrom(stats,sd)
importFrom(stringr,str_replace_all)
# Generated by roxygen2: do not edit by hand

export(aggregateByKey)
export(as.POSIXct_fast)
export(build_bins)
export(build_encoding)
export(build_scales)
export(dataPrepNews)
export(dateFormatUnifier)
export(description)
export(fastDiscretization)
export(fastFilterVariables)
export(fastHandleNa)
export(fastIsEqual)
export(fastRound)
export(fastScale)
export(findAndTransformDates)
export(findAndTransformNumerics)
export(generateDateDiffs)
export(generateFactorFromDate)
export(generateFromCharacter)
export(generateFromFactor)
export(identifyDates)
export(one_hot_encoder)
export(prepareSet)
export(sameShape)
export(setAsNumericMatrix)
export(setColAsCharacter)
export(setColAsDate)
export(setColAsFactor)
export(setColAsNumeric)
export(shapeSet)
export(unFactor)
export(whichAreBijection)
export(whichAreConstant)
export(whichAreInDouble)
export(whichAreIncluded)
import(data.table)
importFrom(Matrix,sparse.model.matrix)
importFrom(lubridate,is.Date)
importFrom(lubridate,is.POSIXct)
importFrom(lubridate,is.POSIXlt)
importFrom(lubridate,is.POSIXt)
importFrom(lubridate,parse_date_time)
importFrom(progress,progress_bar)
importFrom(stats,as.formula)
importFrom(stats,contrasts)
importFrom(stats,model.matrix)
importFrom(stats,sd)
importFrom(stringr,str_replace_all)
Loading

0 comments on commit 30dd044

Please sign in to comment.