Skip to content

Commit

Permalink
Updated NEWS.Rd and ChangeLog files
Browse files Browse the repository at this point in the history
  • Loading branch information
melff committed May 26, 2020
1 parent 3b127a8 commit 9c7b259
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
2 changes: 0 additions & 2 deletions pkg/R/value-labels.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
## TODO: Handle NA in labels part

## labels ################################################################################

setMethod("initialize","value.labels",function(.Object,...){
Expand Down
21 changes: 20 additions & 1 deletion pkg/inst/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
2020-03-14:
2020-05-26:
- The character set encoding in an SPSS file is now detected (if information
is available) and used to translate the variable labels and value labels.

2020-05-25:
- Added support for weighted codebooks from importer objects
- Added documentation about use of weights
- Added support for subsetting codebooks with '$', '[', and '[['
- Fixed a bug that prevented 'genTable' and 'Aggregate' to work as expected
with data.set objects
- Measurement levels of variables in 'data.set' objects are now obtained from
the metadata in the SPSS file (if available)

2020-05-24:
- Drop skewness and kurtosis from codebook output

2020-05-19:
- Added support for weighted codebooks from in-memory data.set objects

2020-03-14:
- Added 'deduplicate_labels()' function to deal with duplicated value labels.

2020-01-02:
Expand Down
18 changes: 16 additions & 2 deletions pkg/inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,11 @@
the new function \code{set_measurement()}.
\item There are convenience wrappers such as \code{Mean()} etc. for
\code{mean()} etc. that have the default setting \code{na.rm=TRUE}
instead of \code{na.rm=FALSE}.
}
instead of \code{na.rm=FALSE}.
\item A new \code{deduplicate_labels()} function allows to deal with
duplicate labels (where several codes have the same label)
\item It is now possible to create codebooks for weighted data.
}
}
\subsection{IMPROVEMENTS}{
\itemize{
Expand Down Expand Up @@ -151,6 +154,15 @@
\item \code{relabel()}, \code{rename()}, and \code{dimrename()},
do no longer require their arguments to be enclosed in
quotation marks.
\item Operators '$', '[', and '[[' can now be appied to codebook objects
to get a codebook of a subset of the varaibles.
\item \code{spss.system.file()} now uses information contained in SPSS
files (if available) to determine the measurement level
of the improrted variables.
\item \code{spss.system.file()} uses information about the character set
encoding if available in the file to translate variable labels and
value labels into the coding of the machine on which \emph{R} is
being run.
}
}
\subsection{BUGFIXES}{
Expand Down Expand Up @@ -199,6 +211,8 @@
\item All vignettes are now using \emph{knitr}.
\item HTML output uses unicode characters by default instead of
amersand-escapes to enhance compatibility with \emph{pandoc}.
\item \code{codebook()} no longer shows the skewness and kurtosis of
numeric variables to save output space.
}
}
\subsection{DEFUNCT}{
Expand Down

0 comments on commit 9c7b259

Please sign in to comment.