-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from piLaboratory/dev
Sads 0.2.4
- Loading branch information
Showing
10 changed files
with
201 additions
and
11 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,8 +1,8 @@ | ||
Package: sads | ||
Type: Package | ||
Title: Maximum Likelihood Models for Species Abundance Distributions | ||
Version: 0.2.3 | ||
Date: 2015-09-24 | ||
Version: 0.2.4 | ||
Date: 2015-11-02 | ||
Author: Paulo I. Prado, Murilo Dantas Miranda and Andre Chalom | ||
Maintainer: Paulo I. Prado <[email protected]> | ||
Depends: | ||
|
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
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
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,52 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/sads-methods.R | ||
\docType{methods} | ||
\name{coefficients,fitsad-method} | ||
\alias{coefficients,fitrad-method} | ||
\alias{coefficients,fitsad-method} | ||
\alias{fitted,fitrad-method} | ||
\alias{fitted,fitsad-method} | ||
\alias{fitted.values,fitrad-method} | ||
\alias{fitted.values,fitsad-method} | ||
\alias{residuals,fitrad-method} | ||
\alias{residuals,fitsad-method} | ||
\title{Standard stats methods} | ||
\usage{ | ||
\S4method{coefficients}{fitsad}(object, ...) | ||
|
||
\S4method{coefficients}{fitrad}(object, ...) | ||
|
||
\S4method{fitted.values}{fitsad}(object, ...) | ||
|
||
\S4method{fitted.values}{fitrad}(object, ...) | ||
|
||
\S4method{fitted}{fitsad}(object, ...) | ||
|
||
\S4method{fitted}{fitrad}(object, ...) | ||
|
||
\S4method{residuals}{fitsad}(object, ...) | ||
|
||
\S4method{residuals}{fitrad}(object, ...) | ||
} | ||
\arguments{ | ||
\item{object}{An object from class fitsad or fitrad} | ||
|
||
\item{\dots}{Other arguments to be forwarded for the lower level function} | ||
} | ||
\description{ | ||
Provide the standard interface for fitted objects | ||
} | ||
\details{ | ||
These methods are provided to allow for standard manipulation of \code{\link{fitsad}} | ||
and \code{\link{fitrad}} objects using the generic methods defined in the "stats" package. | ||
Please see the original man pages for each method. | ||
|
||
\code{coefficients} is an alias to \code{\link[stats]{coef}} (implemented in package "bbmle"). | ||
|
||
\code{fitted} and \code{fitted.values} provide an alternative interface to \code{\link{radpred}}; | ||
these are also used to calcutate \code{residuals}. | ||
|
||
Notice that radpred is a preferred interface for most calculations, specially if there are several | ||
ties. | ||
} | ||
|
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,26 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/sads-classes.R, R/sads-methods.R | ||
\docType{class} | ||
\name{summary.mle2-class} | ||
\alias{show,summary.sads-method} | ||
\alias{summary,fitrad-method} | ||
\alias{summary,fitsad-method} | ||
\alias{summary.mle2-class} | ||
\alias{summary.sads-class} | ||
\title{Summary for fitsad/fitrad calls} | ||
\usage{ | ||
\S4method{show}{summary.sads}(object) | ||
|
||
\S4method{summary}{fitsad}(object) | ||
|
||
\S4method{summary}{fitrad}(object) | ||
} | ||
\arguments{ | ||
\item{object}{An object of class fitsad/fitrad is required to generate a summary.sads object.} | ||
} | ||
\description{ | ||
This function works almost exactly as bbmle's summary.mle2, but it includes a "fixed parameters" | ||
line for models with fixed parameters, such as \code{\link{fitls}} or \code{fitvolkov}. | ||
NOTICE that the summary.mle2 is redefined in this package, as this class is not exported by bbmle. | ||
} | ||
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