Skip to content

Commit

Permalink
V0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
djvanderlaan committed Jan 3, 2017
1 parent 0c90ab9 commit 76dc4e2
Show file tree
Hide file tree
Showing 31 changed files with 394 additions and 395 deletions.
9 changes: 5 additions & 4 deletions LaF/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Package: LaF
Type: Package
Title: Fast access to large ASCII files
Version: 0.6.2
Date: 2015-01-28
Title: Fast Access to Large ASCII Files
Version: 0.6.3
Date: 2017-01-02
Author: Jan van der Laan
Maintainer: Jan van der Laan <djvanderlaan@unrealizedtime.nl>
Description: Methods for fast access to large ASCII files. Currently the
following file formats are supported: comma separated format (csv) and fixed
following file formats are supported: comma separated format (CSV) and fixed
width format. It is assumed that the files are too large to fit into memory,
although the package can also be used to efficiently access files that do
fit into memory. Methods are provided to access and process files blockwise.
Expand Down Expand Up @@ -35,3 +35,4 @@ Collate:
'textutils.R'
'types.R'
'utility.R'
RoxygenNote: 5.0.1
3 changes: 3 additions & 0 deletions LaF/NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Generated by roxygen2: do not edit by hand

export(begin)
export(colfreq)
export(colmean)
Expand Down Expand Up @@ -45,4 +47,5 @@ exportMethods(read_lines)
exportMethods(show)
import(methods)
importFrom(Rcpp,evalCpp)
importFrom(utils,read.table)
useDynLib(LaF)
6 changes: 6 additions & 0 deletions LaF/NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@


LaF version 0.6.3
===============================================================================
* Minor update. Fixes error in detect_dm_csv with sample = TRUE. As reported
by spinwards.

LaF version 0.6.2
===============================================================================
* Minor update. Fixes error with '~' in the path name.
Expand Down
14 changes: 9 additions & 5 deletions LaF/R/laf.R
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ setMethod(
)

#' Get the number of rows in a Large File object
#' @param x a \code{"\link[=laf-class]{laf}"} object.
#' @rdname nrow
#' @useDynLib LaF
#' @export
Expand All @@ -119,6 +120,7 @@ setMethod(
)

#' Get the number of columns in a Large File object
#' @param x a \code{"\link[=laf-class]{laf}"} object.
#' @rdname ncol
#' @export
setMethod(
Expand All @@ -129,7 +131,9 @@ setMethod(
}
)

#' Get the names of the columns in a Large File object
#' Get and set the names of the columns in a Large File object
#' @param x a \code{"\link[=laf-class]{laf}"} object.
#' @param value a character vector with the new column names
#' @rdname names
#' @export
setMethod(
Expand All @@ -140,10 +144,6 @@ setMethod(
}
)

# =============================================================================
# Set the names of the columns in the file
#

#' @rdname names
#' @export
setMethod(
Expand Down Expand Up @@ -366,6 +366,8 @@ setMethod(
)

#' Get and change the levels of the column in a Large File object
#' @param x a \code{"\link[=laf-class]{laf}"} object.
#' @param value a list with the levels for each column.
#' @rdname levels
#' @export
setMethod(
Expand Down Expand Up @@ -398,6 +400,8 @@ setMethod(


#' Close the connection to the Large File
#' @param con a \code{"\link[=laf-class]{laf}"} object that can be closed.
#' @param ... unused.
#' @rdname close
#' @useDynLib LaF
#' @export
Expand Down
1 change: 1 addition & 0 deletions LaF/R/meta.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
#' # Create LaF-object
#' laf <- laf_open(model)
#'
#' @importFrom utils read.table
#' @export
detect_dm_csv <- function(filename, sep=",", dec=".", header=FALSE,
nrows=1000, nlines=NULL, sample=FALSE, factor_fraction=0.4, ...) {
Expand Down
15 changes: 8 additions & 7 deletions LaF/man/begin.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 12 additions & 10 deletions LaF/man/cindexing.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions LaF/man/close.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions LaF/man/current_line.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 31 additions & 35 deletions LaF/man/datamodels.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 76dc4e2

Please sign in to comment.