Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenjw committed Jul 18, 2023
1 parent 63038c9 commit 73d2f6b
Show file tree
Hide file tree
Showing 12 changed files with 141 additions and 147 deletions.
264 changes: 131 additions & 133 deletions docs/QuickStart.md

Large diffs are not rendered by default.

Binary file modified docs/bsplines.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/cosine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/glm-plots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/lm-plots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/pairs-plots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/pca-plots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/pglm-plots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/poly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/scalaglm.html
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ <h2 class="h200">Attributes</h2>
<div class="cover">
<div class="doc">
<p>Utilities for multivariate time series</p>
<p>These utilities assume that the time series is sorted in a Breeze <code>DMD</code> with variables/component series in columns, and observations in rows with the first row corresponding to the first observation and the last row to the last.</p>
<p>These utilities assume that the time series is stored in a Breeze <code>DMD</code> with variables/component series in columns, and observations in rows with the first row corresponding to the first observation and the last row to the last.</p>
</div>
<h2 class="h200">Attributes</h2>
<dl class="attributes attributes-small">
Expand Down
10 changes: 5 additions & 5 deletions docs/scalaglm/TimeSeries$.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="h600 single">TimeSeries</h1>
<div class="cover">
<div class="doc">
<p>Utilities for multivariate time series</p>
<p>These utilities assume that the time series is sorted in a Breeze <code>DMD</code> with variables/component series in columns, and observations in rows with the first row corresponding to the first observation and the last row to the last.</p>
<p>These utilities assume that the time series is stored in a Breeze <code>DMD</code> with variables/component series in columns, and observations in rows with the first row corresponding to the first observation and the last row to the last.</p>
</div>
<section id="attributes">
<h2 class="h500">Attributes</h2>
Expand Down Expand Up @@ -324,11 +324,11 @@ <h2 class="h200">Attributes</h2>
<div class="originInfo"></div>
<div class="memberDocumentation">
<div class="documentableBrief doc">
<p>Fit a mean-zero VAR(p) model to a time series via least squares Since the model being fit is mean zero, you may want to mean-centre your data</p>
<p>Fit a mean-zero VAR(p) model to a time series via least squares. Since the model being fit is mean zero, you may want to mean-centre your data.</p>
</div>
<div class="cover">
<div class="doc">
<p>Fit a mean-zero VAR(p) model to a time series via least squares Since the model being fit is mean zero, you may want to mean-centre your data</p>
<p>Fit a mean-zero VAR(p) model to a time series via least squares. Since the model being fit is mean zero, you may want to mean-centre your data.</p>
</div>
<h2 class="h200">Value parameters</h2>
<dl class="attributes attributes-small">
Expand Down Expand Up @@ -380,11 +380,11 @@ <h2 class="h200">Attributes</h2>
<div class="originInfo"></div>
<div class="memberDocumentation">
<div class="documentableBrief doc">
<p>Check whether a given set of VAR matrices (such as returned by <code>fitVar</code>) correspond to a VAR(p) that is stationary</p>
<p>Check whether a given set of VAR matrices (such as returned by <code>fitVar</code>) correspond to a VAR(p) model that is stationary</p>
</div>
<div class="cover">
<div class="doc">
<p>Check whether a given set of VAR matrices (such as returned by <code>fitVar</code>) correspond to a VAR(p) that is stationary</p>
<p>Check whether a given set of VAR matrices (such as returned by <code>fitVar</code>) correspond to a VAR(p) model that is stationary</p>
</div>
<h2 class="h200">Value parameters</h2>
<dl class="attributes attributes-small">
Expand Down
12 changes: 4 additions & 8 deletions src/main/scala/scalaglm/TimeSeries.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,18 @@ import breeze.stats._
/**
* Utilities for multivariate time series
*
* These utilities assume that the time series is sorted in a Breeze `DMD`
* These utilities assume that the time series is stored in a Breeze `DMD`
* with variables/component series in columns, and observations in rows
* with the first row corresponding to the first observation and the last
* row to the last.
*
*/
object TimeSeries {

// some basic data summaries

// TODO: time series example

// TODO: time series mdoc

// TODO: time series scaladoc

// TODO: time series tests

/**
Expand Down Expand Up @@ -125,8 +121,8 @@ object TimeSeries {
import Utils._

/**
* Fit a mean-zero VAR(p) model to a time series via least squares
* Since the model being fit is mean zero, you may want to mean-centre your data
* Fit a mean-zero VAR(p) model to a time series via least squares.
* Since the model being fit is mean zero, you may want to mean-centre your data.
*
* @param x Time series
* @param p The order of the VAR(p) model to be fits
Expand Down Expand Up @@ -155,7 +151,7 @@ object TimeSeries {


/**
* Check whether a given set of VAR matrices (such as returned by `fitVar`) correspond to a VAR(p) that is stationary
* Check whether a given set of VAR matrices (such as returned by `fitVar`) correspond to a VAR(p) model that is stationary
*
* @param phi List of VAR matrices
*
Expand Down

0 comments on commit 73d2f6b

Please sign in to comment.