-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdc3b6e
commit db6c629
Showing
5 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
2017-11-22 Anthony Hennessey <[email protected]> | ||
|
||
Version 1.1-0 | ||
|
||
* R/surface.R: Added optional 'nodes' and 'collocates' filters. Use of the 'nodes' filter improves performance and reduces memory footprint. | ||
* R/coco.R: Added optional 'collocates' filter. The 'collocates' filter is used to target the testing and hence reduce the number of tests; reducing the number of tests reduces the loss of power from the multiple test correction. | ||
* R/surface_coco.R: Applies the new filters for the 'surface' and 'coco' functions. | ||
* R/coco-class.R (plot.coco): Allow configuration of whiskers in plots. Use on.exit to restore graphics parameters. | ||
* inst/doc/*.pdf: Documentation moved to vignettes directory with help from R.rsp package. | ||
* vignettes/*.pdf: Example get data from the CLiC API rather than the now deprecated CorporaCorpus package. | ||
* man/*.Rd: Minor corrections and improvements. | ||
|
||
|
||
2017-03-31 Anthony Hennessey <[email protected]> | ||
|
||
Version 1.0-2 | ||
|
||
* R/surface.R (parse_span): No longer uses Perl regex; this allows compatability with older Windows R releases. | ||
* inst/doc/faq.pdf: vignette/faq.Rnw vignette converted to PDF as without CorporaCorpus on CRAN the source in the vignette is confusing, and the --as-cran check is not happy with the vignette code in inst/doc. The .Rnw code will be available in a parallel github repository. Also some text tweeks. | ||
* R/surface.R (parse_span): No longer uses Perl regex; this allows compatibility with older Windows R releases. | ||
* inst/doc/faq.pdf: vignette/faq.Rnw vignette converted to PDF as without CorporaCorpus on CRAN the source in the vignette is confusing, and the --as-cran check is not happy with the vignette code in inst/doc. The .Rnw code will be available in a parallel github repository. Also some text tweaks. | ||
* inst/doc/proof_of_concept.pdf: vignette/proof_of_concept.Rnw ditto. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,19 @@ Encoding: UTF-8 | |
Package: CorporaCoCo | ||
Type: Package | ||
Title: Corpora Co-Occurrence Comparison | ||
Version: 1.0-2 | ||
Date: 2017-03-31 | ||
Version: 1.1-0 | ||
Date: 2017-11-22 | ||
Authors@R: | ||
c(person('Anthony','Hennessey',email='[email protected]',role=c('aut','cre')), | ||
person('Viola','Wiegand',email='[email protected]',role='aut'), | ||
person('Michaela','Mahlberg',email='[email protected]',role='aut'), | ||
person('Christopher R.','Tench',email='[email protected]',role='aut'), | ||
person('Jamie','Lentin',email='jm@ravingmantis.com',role='aut')) | ||
person('Jamie','Lentin',email='jamie.lentin@shuttlethread.com',role='aut')) | ||
Description: A set of functions used to compare co-occurrence between two corpora. | ||
URL: | ||
License: GPL (>= 3) | ||
Depends: | ||
R (>= 3.1.0), | ||
R (>= 3.2.0), | ||
Imports: | ||
methods, | ||
stats, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CHANGES IN VERSION 1.1-0: | ||
|
||
NEW FEATURES: | ||
|
||
* Optional 'nodes' and 'collocates' filters added to the 'surface' function. Use of the 'nodes' filter improves performance and reduces memory footprint. | ||
* Optional 'collocates' filter added to the 'coco' function. The 'collocates' filter is used to target the testing and so reduce the number of tests; reducing the number of tests reduces the loss of power from the multiple test correction. | ||
|
Binary file not shown.
Binary file not shown.