Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tables
Title: Formula-Driven Table Generation
Version: 0.9.31
Version: 0.9.32
Authors@R: person(given = "Duncan",
family = "Murdoch",
role = c("aut", "cre"),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# tables 0.9.32

- The fix for issue #30 was incomplete for some reason.

# tables 0.9.31

- In a few places `len` was used instead of `length.out` in calls to
Expand Down
2 changes: 1 addition & 1 deletion R/tabular.R
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ tabular.formula <- function(table, data=NULL, n, suppressLabels=0, ...) {
if (is.null(data) || is.environment(data))
data <- withTableFns
else if (is.list(data))
data <- list2env(data, parent = environment(table))
data <- list2env(data, parent = withTableFns)
else if (!is.environment(data))
stop("'data' must be a dataframe, list or environment")

Expand Down
1 change: 1 addition & 0 deletions tables.Rproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Version: 1.0
ProjectId: ff106abd-954f-4630-ab81-b1ea0de6fa9b

RestoreWorkspace: Default
SaveWorkspace: Default
Expand Down
Loading