Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
frahik committed Oct 22, 2018
2 parents 6a44922 + cc12cd6 commit b0c5ba6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 27 deletions.
4 changes: 3 additions & 1 deletion R/IBCF.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ IBCF <- function(object, dec = 4) {

Data.Obs_tst <- getTidyForm(DataSet_tst)
posTST <- which(complete.cases(Data.Obs_tst) == TRUE)
results <- rbind(results, data.frame(Partition = j,

results <- rbind(results, data.frame(Position = posTST,
Partition = j,
Environment = Data.Obs_tst$Env[posTST],
Trait = Data.Obs_tst$Trait[posTST],
Observed = round(Data.Obs_tst$Response[posTST],dec),
Expand Down
10 changes: 5 additions & 5 deletions R/methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ barplot.IBCFY <- function(height, select = 'Pearson', ...){

#' Print IBCF information object
#'
#' @param x IBCF object.
#' @param ... Further arguments passed to or from other methods.
#' @param x IBCF object
#' @param ... Further arguments passed to or from other methods.
#'
#' @return printable object
#' @return printeable object
#' @importFrom utils head
#' @export
#'
Expand All @@ -159,9 +159,9 @@ print.IBCF <- function(x, ...){
#' Print IBCFY information object
#'
#' @param x IBCFY object
#' @param ... Further arguments passed to or from other methods.
#' @param ... Further arguments passed to or from other methods.
#'
#' @return printable object
#' @return printeable object
#' @importFrom utils head
#' @export
#'
Expand Down
31 changes: 10 additions & 21 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,10 @@
## Test environments
* Linux - Manjaro R-base [3.4.3]
* Windows 10 R [3.4.3]
* win-builder (devel and release)

## R CMD check results
There were no ERRORs or WARNINGs.

There was 1 NOTE:

* checking CRAN incoming feasibility ... NOTE
Maintainer: 'Francisco Javier Luna-Vazquez <[email protected]>'

## Special Comments

The last version have a several issue with the predictions, this new version has already corrected that detail.
Sorry for this detail.

## Last round comments
For your next version:
Please do not capitalize "Item" in your description. [Solved]
## Test environments
* Linux - Manjaro R-base [3.5.1]
* Windows 10 R [3.5.1]
* win-builder (devel and release)

## R CMD check results

0 errors | 0 warnings | 0 notes

R CMD check succeeded

0 comments on commit b0c5ba6

Please sign in to comment.