-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix `plot,LamaParama`: x and y coordinates were switched. - Small changes in the vignette. - Ensure .R files are loaded in the correct order.
- Loading branch information
Showing
5 changed files
with
77 additions
and
57 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
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
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 |
---|---|---|
|
@@ -1265,7 +1265,8 @@ setMethod("plot", signature(x = "LamaParama"), | |
zero_weight = x@zeroWeight, | ||
bs = x@bs) | ||
datap <- x@rtMap[[index]] | ||
plot(datap, type = "p", xlab = xlab, ylab = ylab, col = colPoints, ...) | ||
plot(datap[, 2L], datap[, 1L], type = "p", xlab = xlab, ylab = ylab, | ||
This comment has been minimized.
Sorry, something went wrong.
jorainer
Author
Collaborator
|
||
col = colPoints, ...) | ||
points(model, type = "l", col = colFit) | ||
}) | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
@philouail , this ensures that the XcmsExperiment.R file is loaded before PlainTextParam.R - to avid the warning message when loading the package.