Change some more links to https
authorDebian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Tue, 28 Jan 2020 22:29:29 +0000 (22:29 +0000)
committerRebecca N. Palmer <rebecca_palmer@zoho.com>
Tue, 28 Jan 2020 22:29:29 +0000 (22:29 +0000)
Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Forwarded: https://github.com/statsmodels/statsmodels/pull/5937

Gbp-Pq: Name link_security2.patch

48 files changed:
CONTRIBUTING.rst
INSTALL.txt
README.rst
docs/source/_static/mktree.js
docs/source/dev/git_notes.rst
docs/source/dev/test_notes.rst
docs/source/diagnostic.rst
docs/source/example_formulas.rst
docs/source/gettingstarted.rst
docs/source/imputation.rst
docs/source/install.rst
docs/source/release/version0.5.rst
docs/source/sandbox.rst
docs/source/vector_ar.rst
docs/themes/statsmodels/sidelinks.html
examples/notebooks/formulas.ipynb
examples/notebooks/generic_mle.ipynb
examples/notebooks/statespace_structural_harvey_jaeger.ipynb
examples/python/formulas.py
examples/python/generic_mle.py
statsmodels/distributions/edgeworth.py
statsmodels/examples/ex_outliers_influence.py
statsmodels/graphics/functional.py
statsmodels/graphics/plot_grids.py
statsmodels/nonparametric/kde.py
statsmodels/nonparametric/kernel_density.py
statsmodels/regression/linear_model.py
statsmodels/regression/recursive_ls.py
statsmodels/sandbox/distributions/extras.py
statsmodels/sandbox/distributions/otherdist.py
statsmodels/sandbox/distributions/sppatch.py
statsmodels/sandbox/regression/kernridgeregress_class.py
statsmodels/sandbox/stats/diagnostic.py
statsmodels/sandbox/stats/runs.py
statsmodels/sandbox/tsa/varma.py
statsmodels/stats/contingency_tables.py
statsmodels/stats/inter_rater.py
statsmodels/stats/moment_helpers.py
statsmodels/stats/outliers_influence.py
statsmodels/stats/proportion.py
statsmodels/tools/eval_measures.py
statsmodels/tools/numdiff.py
statsmodels/tsa/statespace/structural.py
statsmodels/tsa/stattools.py
tools/R2nparray/DESCRIPTION
tools/matplotlibrc.qt4
tools/matplotlibrc.qt5
tools/notebook_output_template.py

index f51c18621a9509e6457b7582a6b4ab3018c7268f..eae5469bc6d25762f35fe2dbae14661ce88feb46 100644 (file)
@@ -5,7 +5,7 @@ This page explains how you can contribute to the development of `statsmodels`
 by submitting patches, statistical tests, new models, or examples.
 
 `statsmodels` is developed on `Github <https://github.com/statsmodels/statsmodels>`_
-using the `Git <http://git-scm.com/>`_ version control system.
+using the `Git <https://git-scm.com/>`_ version control system.
 
 Submitting a Bug Report
 ~~~~~~~~~~~~~~~~~~~~~~~
@@ -49,7 +49,7 @@ How to Submit a Pull Request
 So you want to submit a patch to `statsmodels` but aren't too familiar with github? Here are the steps you need to take.
 
 1. `Fork <https://help.github.com/articles/fork-a-repo>`_ the `statsmodels repository <https://github.com/statsmodels/statsmodels>`_ on Github.
-2. `Create a new feature branch <http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging>`_. Each branch must be self-contained, with a single new feature or bugfix.
+2. `Create a new feature branch <https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging>`_. Each branch must be self-contained, with a single new feature or bugfix.
 3. Make sure the test suite passes. This includes testing on Python 3. The easiest way to do this is to either enable `Travis-CI <https://travis-ci.org/>`_ on your fork, or to make a pull request and check there.
 4. Document your changes by editing the appropriate file in ``docs/source/``. If it is a big, new feature add a note and an example to the latest ``docs/source/release/versionX.X.rst`` file. See older versions for examples. If it's a minor change, it will be included automatically in our relase notes.
 5. Add an example. If it is a big, new feature please submit an example notebook by following `these instructions <https://www.statsmodels.org/devel/dev/examples.html>`_.
@@ -58,7 +58,7 @@ So you want to submit a patch to `statsmodels` but aren't too familiar with gith
 Mailing List
 ~~~~~~~~~~~~
 
-Conversations about development take place on the `statsmodels mailing list <http://groups.google.com/group/pystatsmodels?hl=en>`__.
+Conversations about development take place on the `statsmodels mailing list <https://groups.google.com/group/pystatsmodels?hl=en>`__.
 
 Learn More
 ~~~~~~~~~~
@@ -70,4 +70,4 @@ License
 ~~~~~~~
 
 Statsmodels is released under the
-`Modified (3-clause) BSD license <http://www.opensource.org/licenses/BSD-3-Clause>`_.
+`Modified (3-clause) BSD license <https://www.opensource.org/licenses/BSD-3-Clause>`_.
index f0b0b368267d5aac202806023c7181d884ffec2d..89ba9922af2beb2fb68be307821c5e7769bbc632 100644 (file)
@@ -23,7 +23,7 @@ patsy >= 0.4.0
 
 cython >= 0.24
 
-    http://cython.org/
+    https://cython.org/
 
     Cython is required if you are building the source from github. However,
     if you have are building from source distribution archive then the 
@@ -36,7 +36,7 @@ Optional Dependencies
 
 X-12-ARIMA or X-13ARIMA-SEATS
 
-    http://www.census.gov/srd/www/x13as/
+    https://www.census.gov/srd/www/x13as/
 
     If available, time-series analysis can be conducted using either 
     X-12-ARIMA or the newer X-13ARIMA-SEATS. You should place the 
@@ -45,7 +45,7 @@ X-12-ARIMA or X-13ARIMA-SEATS
 
 matplotlib >= 1.5
 
-    http://matplotlib.org/
+    https://matplotlib.org/
 
     Matplotlib is needed for plotting functionality and running many of the 
     examples.
@@ -95,7 +95,7 @@ Installing from Source
 
 Download and extract the source distribution from PyPI or github
 
-    http://pypi.python.org/pypi/statsmodels
+    https://pypi.python.org/pypi/statsmodels
     https://github.com/statsmodels/statsmodels/tags
 
 Or clone the bleeding edge code from our repository on github at
index a0738969012379941b84edef06e7091a788e6817..79a70fdb54639e3258cc54a00d25429a0aa70e08 100644 (file)
@@ -149,7 +149,7 @@ Discussion and Development
 
 Discussions take place on our mailing list.
 
-http://groups.google.com/group/pystatsmodels
+https://groups.google.com/group/pystatsmodels
 
 We are very interested in feedback about usability and suggestions for
 improvements.
index 299cb2aef59e2898a0b6da68fa5e15ead16c44b2..6322c5eeca9ea791f1004db6d6af8f2d2983c2e1 100644 (file)
@@ -4,7 +4,7 @@
  * Dual licensed under the MIT and GPL licenses.
  * This basically means you can use this code however you want for
  * free, but don't claim to have written it yourself!
- * Donations always accepted: http://www.JavascriptToolbox.com/donate/
+ * Donations always accepted: https://www.JavascriptToolbox.com/donate/
  *
  * Please do not link to the .js files on javascripttoolbox.com from
  * your site. Copy the files locally to your server instead.
index bce8357a5c96021886bfe5d8b116f722e2df0cfc..5062c4a7821c24d708a4382f6e274e68a72bf847 100644 (file)
@@ -12,7 +12,7 @@ contribute you will need to `sign up for a free Github account <https://github.c
 Version Control and Git
 -----------------------
 
-We use the `Git <http://git-scm.com/>`_ version control system for development.
+We use the `Git <https://git-scm.com/>`_ version control system for development.
 Git allows many people to work together on the same project.  In a nutshell, it
 allows you to make changes to the code independent of others who may also be
 working on the code and allows you to easily contribute your changes to the
@@ -27,7 +27,7 @@ To learn more about Git, you may want to visit:
 + `Git documentation (book and videos) <https://git-scm.com/documentation>`_
 + `Github help pages <https://help.github.com/>`_
 + `NumPy documentation <https://docs.scipy.org/doc/numpy/dev/index.html>`_
-+ `Matthew Brett's Pydagogue <http://matthew-brett.github.io/pydagogue/>`_
++ `Matthew Brett's Pydagogue <https://matthew-brett.github.io/pydagogue/>`_
 
 Below, we describe the bare minimum git commands you need to contribute to
 `statsmodels`.
@@ -217,7 +217,7 @@ could introduce bugs. However, if you have only a few commits, this might not
 be such a concern. One great place to start learning about rebase is
 :ref:`rebasing without tears <pydagogue:actual-rebase>`.  In particular, `heed
 the warnings
-<http://matthew-brett.github.io/pydagogue/rebase_without_tears.html#safety>`__.
+<https://matthew-brett.github.io/pydagogue/rebase_without_tears.html#safety>`__.
 Namely, **always make a new branch before doing a rebase**. This is good
 general advice for working with git. I would also add **never use rebase on
 work that has already been published**. If another developer is using your
index 5bcf240993cd5cee04bdc0feb9c876bc2169be76..c8a1209ed0a105e76e6c6c3a9a4379a92c9b38fc 100644 (file)
@@ -24,7 +24,7 @@ tests versus an existing statistical package, if possible.
 
 Introduction to pytest
 ----------------------
-Like many packages, statsmodels uses the `pytest testing system <https://docs.pytest.org/en/latest/contents.html>`__ and the convenient extensions in `numpy.testing <http://docs.scipy.org/doc/numpy/reference/routines.testing.html>`__.  Pytest will find any file, directory, function, or class name that starts with ``test`` or ``Test`` (classes only). Test function should start with ``test``, test classes should start with ``Test``. These functions and classes should be placed in files with names beginning with ``test`` in a directory called ``tests``.
+Like many packages, statsmodels uses the `pytest testing system <https://docs.pytest.org/en/latest/contents.html>`__ and the convenient extensions in `numpy.testing <https://docs.scipy.org/doc/numpy/reference/routines.testing.html>`__.  Pytest will find any file, directory, function, or class name that starts with ``test`` or ``Test`` (classes only). Test function should start with ``test``, test classes should start with ``Test``. These functions and classes should be placed in files with names beginning with ``test`` in a directory called ``tests``.
 
 .. _run-tests:
 
index f555b5af57210d288c3e8f1447a838fbacecc355..9d9f104bfa06d2dfcb17dbf617948c6ddd1ed79d 100644 (file)
@@ -210,7 +210,7 @@ individual outliers and might not be able to identify groups of outliers.
    - resid_studentized_internal
    - ess_press
    - hat_matrix_diag
-   - cooks_distance - Cook's Distance `Wikipedia <http://en.wikipedia.org/wiki/Cook%27s_distance>`_ (with some other links)
+   - cooks_distance - Cook's Distance `Wikipedia <https://en.wikipedia.org/wiki/Cook%27s_distance>`_ (with some other links)
    - cov_ratio
    - dfbetas
    - dffits
index b950e4d6058003b9d0d1f666df35872e942eff1d..a9b1439ede99627199d998a88b6c677b49baad16 100644 (file)
@@ -5,13 +5,13 @@ Fitting models using R-style formulas
 
 Since version 0.5.0, ``statsmodels`` allows users to fit statistical
 models using R-style formulas. Internally, ``statsmodels`` uses the
-`patsy <http://patsy.readthedocs.io/en/latest/>`_ package to convert formulas and
+`patsy <https://patsy.readthedocs.io/en/latest/>`_ package to convert formulas and
 data to the matrices that are used in model fitting. The formula
 framework is quite powerful; this tutorial only scratches the surface. A
 full description of the formula language can be found in the ``patsy``
 docs:
 
--  `Patsy formula language description <http://patsy.readthedocs.io/en/latest/>`_
+-  `Patsy formula language description <https://patsy.readthedocs.io/en/latest/>`_
 
 Loading modules and functions
 -----------------------------
@@ -31,7 +31,7 @@ counterparts for most of these models. In general, lower case models
 accept ``formula`` and ``df`` arguments, whereas upper case ones take
 ``endog`` and ``exog`` design matrices. ``formula`` accepts a string
 which describes the model in terms of a ``patsy`` formula. ``df`` takes
-a `pandas <http://pandas.pydata.org/>`_ data frame.
+a `pandas <https://pandas.pydata.org/>`_ data frame.
 
 ``dir(smf)`` will print a list of available models.
 
@@ -145,7 +145,7 @@ Define a custom function:
 Namespaces
 ----------
 
-Notice that all of the above examples use the calling namespace to look for the functions to apply. The namespace used can be controlled via the ``eval_env`` keyword. For example, you may want to give a custom namespace using the :class:`patsy:patsy.EvalEnvironment` or you may want to use a "clean" namespace, which we provide by passing ``eval_func=-1``. The default is to use the caller's namespace. This can have (un)expected consequences, if, for example, someone has a variable names ``C`` in the user namespace or in their data structure passed to ``patsy``, and ``C`` is used in the formula to handle a categorical variable. See the `Patsy API Reference <http://patsy.readthedocs.io/en/latest/API-reference.html>`_ for more information.
+Notice that all of the above examples use the calling namespace to look for the functions to apply. The namespace used can be controlled via the ``eval_env`` keyword. For example, you may want to give a custom namespace using the :class:`patsy:patsy.EvalEnvironment` or you may want to use a "clean" namespace, which we provide by passing ``eval_func=-1``. The default is to use the caller's namespace. This can have (un)expected consequences, if, for example, someone has a variable names ``C`` in the user namespace or in their data structure passed to ``patsy``, and ``C`` is used in the formula to handle a categorical variable. See the `Patsy API Reference <https://patsy.readthedocs.io/en/latest/API-reference.html>`_ for more information.
 
 Using formulas with models that do not (yet) support them
 ---------------------------------------------------------
index ff27ab63edca51a1100f5cacfaf7bffe0e932bc3..f2a56d5bd456c78c445ca34ced652e54455d7c39 100644 (file)
@@ -20,7 +20,7 @@ few modules and functions:
     import pandas
     from patsy import dmatrices
 
-`pandas <http://pandas.pydata.org/>`_ builds on ``numpy`` arrays to provide
+`pandas <https://pandas.pydata.org/>`_ builds on ``numpy`` arrays to provide
 rich data structures and data analysis tools. The ``pandas.DataFrame`` function
 provides labelled arrays of (potentially heterogenous) data, similar to the
 ``R`` "data.frame". The ``pandas.read_csv`` function can be used to convert a
@@ -94,7 +94,7 @@ capita (*Lottery*). :math:`X` is :math:`N \times 7` with an intercept, the
 *Literacy* and *Wealth* variables, and 4 region binary variables.
 
 The ``patsy`` module provides a convenient function to prepare design matrices
-using ``R``-like formulas. You can find more information `here <http://patsy.readthedocs.io/en/latest/>`_.
+using ``R``-like formulas. You can find more information `here <https://patsy.readthedocs.io/en/latest/>`_.
 
 We use ``patsy``'s ``dmatrices`` function to create design matrices:
 
@@ -116,7 +116,7 @@ Notice that ``dmatrices`` has
 * returned ``pandas`` DataFrames instead of simple numpy arrays. This is useful because DataFrames allow ``statsmodels`` to carry-over meta-data (e.g. variable names) when reporting results.
 
 The above behavior can of course be altered. See the `patsy doc pages
-<http://patsy.readthedocs.io/en/latest/>`_.
+<https://patsy.readthedocs.io/en/latest/>`_.
 
 Model fit and summary
 ---------------------
index c7efcce1550b44f59bc8ee54e8c7856a751e5a1d..f2d24a527fac04eb4b33f23bdc28cc8745445d6f 100644 (file)
@@ -48,5 +48,5 @@ Implementation Details
 ----------------------
 
 Internally, this function uses
-`pandas.isnull <http://pandas.pydata.org/pandas-docs/stable/missing_data.html#working-with-missing-data>`_.
+`pandas.isnull <https://pandas.pydata.org/pandas-docs/stable/missing_data.html#working-with-missing-data>`_.
 Anything that returns True from this function will be treated as missing data.
index 4171c1b0c2af00eb4621c55c84b1dceeb17ee772..a31df09a7ef24bf9b935cd67369db417ead2141e 100644 (file)
@@ -104,11 +104,11 @@ Dependencies
 The current minimum dependencies are:
 
 * `Python <https://www.python.org>`__ >= 2.7, including Python 3.4+
-* `NumPy <http://www.scipy.org/>`__ >= 1.11
-* `SciPy <http://www.scipy.org/>`__ >= 0.18
-* `Pandas <http://pandas.pydata.org/>`__ >= 0.19
+* `NumPy <https://www.scipy.org/>`__ >= 1.11
+* `SciPy <https://www.scipy.org/>`__ >= 0.18
+* `Pandas <https://pandas.pydata.org/>`__ >= 0.19
 * `Patsy <https://patsy.readthedocs.io/en/latest/>`__ >= 0.4.0
-* `Cython <http://cython.org/>`__ >= 0.24 is required to build the code from
+* `Cython <https://cython.org/>`__ >= 0.24 is required to build the code from
   github but not from a source distribution.
 
 Given the long release cycle, Statsmodels follows a loose time-based policy for
@@ -121,14 +121,14 @@ September 2018, when we will update to reflect Numpy >= 1.12 (released January
 Optional Dependencies
 ---------------------
 
-* `Matplotlib <http://matplotlib.org/>`__ >= 1.5 is needed for plotting
+* `Matplotlib <https://matplotlib.org/>`__ >= 1.5 is needed for plotting
   functions and running many of the examples.
-* If installed, `X-12-ARIMA <http://www.census.gov/srd/www/x13as/>`__ or
-  `X-13ARIMA-SEATS <http://www.census.gov/srd/www/x13as/>`__ can be used
+* If installed, `X-12-ARIMA <https://www.census.gov/srd/www/x13as/>`__ or
+  `X-13ARIMA-SEATS <https://www.census.gov/srd/www/x13as/>`__ can be used
   for time-series analysis.
 * `pytest <https://docs.pytest.org/en/latest/>`__ is required to run
   the test suite.
-* `IPython <http://ipython.org>`__ >= 3.0 is required to build the
+* `IPython <https://ipython.org>`__ >= 3.0 is required to build the
   docs locally or to use the notebooks.
 * `joblib <http://pythonhosted.org/joblib/>`__ >= 0.9 can be used to accelerate distributed
   estimation for certain models.
index c346b82a0a7cd9191d1f83d6c5c4de8a4e05081f..8b5ba98184d4eeb39b575a9ddc9b5363ad2f5dda 100644 (file)
@@ -69,7 +69,7 @@ It is now possible to fit negative binomial models for count data via maximum-li
 l1-penalized Discrete Choice Models
 -----------------------------------
 
-A new optimization method has been added to the discrete models, which includes Logit, Probit, MNLogit and Poisson, that makes it possible to estimate the models with an l1, linear, penalization. This shrinks parameters towards zero and can set parameters that are not very different from zero to zero. This is especially useful if there are a large number of explanatory variables and a large associated number of parameters. `CVXOPT <http://cvxopt.org/>`_ is now an optional dependency that can be used for fitting these models.
+A new optimization method has been added to the discrete models, which includes Logit, Probit, MNLogit and Poisson, that makes it possible to estimate the models with an l1, linear, penalization. This shrinks parameters towards zero and can set parameters that are not very different from zero to zero. This is especially useful if there are a large number of explanatory variables and a large associated number of parameters. `CVXOPT <https://cvxopt.org/>`_ is now an optional dependency that can be used for fitting these models.
 
 New and Improved Graphics
 -------------------------
index 22f7eb0aa7a6cc4819105f9eb4be2488e880b48d..392f17a5ba9f5aa6c0761ef6706f8c2843017062 100644 (file)
@@ -43,7 +43,7 @@ Moving Window Statistics
 
 Most moving window statistics, like rolling mean, moments (up to 4th order), min,
 max, mean, and variance, are covered by the functions for `Moving (rolling)
-statistics/moments <http://pandas.pydata.org/pandas-docs/stable/computation.html#moving-rolling-statistics-moments>`_ in Pandas.
+statistics/moments <https://pandas.pydata.org/pandas-docs/stable/computation.html#moving-rolling-statistics-moments>`_ in Pandas.
 
 .. module:: statsmodels.sandbox.tsa
    :synopsis: Experimental time-series analysis models
index 08a8b7261e9b8ac1905cad4eafd2becbb3327bed..3efc2fc0e2b0f5f1c97374d5bd42a0d75b9d15b5 100644 (file)
@@ -34,7 +34,7 @@ and their lagged values is the *vector autoregression process*:
 where :math:`A_i` is a :math:`K \times K` coefficient matrix.
 
 We follow in large part the methods and notation of `Lutkepohl (2005)
-<http://www.springer.com/gb/book/9783540401728>`__,
+<https://www.springer.com/gb/book/9783540401728>`__,
 which we will not develop here.
 
 Model fitting
index 4ac8089588cb41c9f428aa2631c3213612a4be9c..d49066cd90f3afacccf7607d04972288a9be3eea 100644 (file)
@@ -1,2 +1,2 @@
 <p><a href="https://twitter.com/statsmodels">Twitter</a>
-<a href="http://scipystats.blogspot.com/"><img src="{{ pathto('_static/blogger_sm.png', 1) }}" alt="Blog"></a></p>
+<a href="https://scipystats.blogspot.com/"><img src="{{ pathto('_static/blogger_sm.png', 1) }}" alt="Blog"></a></p>
index dae2e8f79989dcfc6f8613c7924e2ea8d00cd0e6..404d3c94ec6f8c64348dc3a280b0a354dc4e52be 100644 (file)
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "All of the lower case models accept ``formula`` and ``data`` arguments, whereas upper case ones take ``endog`` and ``exog`` design matrices. ``formula`` accepts a string which describes the model in terms of a ``patsy`` formula. ``data`` takes a [pandas](http://pandas.pydata.org/) data frame or any other data structure that defines a ``__getitem__`` for variable names like a structured array or a dictionary of variables. \n",
+    "All of the lower case models accept ``formula`` and ``data`` arguments, whereas upper case ones take ``endog`` and ``exog`` design matrices. ``formula`` accepts a string which describes the model in terms of a ``patsy`` formula. ``data`` takes a [pandas](https://pandas.pydata.org/) data frame or any other data structure that defines a ``__getitem__`` for variable names like a structured array or a dictionary of variables. \n",
     "\n",
     "``dir(sm.formula)`` will print a list of available models. \n",
     "\n",
index 47b2ebcae340b33831a42e52f5adb4b01962d7de..8b5849c0bb823a9644e66ddf073f540ba98a2520 100644 (file)
     "\n",
     "The [Medpar](https://raw.githubusercontent.com/vincentarelbundock/Rdatasets/doc/COUNT/medpar.html)\n",
     "dataset is hosted in CSV format at the [Rdatasets repository](https://raw.githubusercontent.com/vincentarelbundock/Rdatasets). We use the ``read_csv``\n",
-    "function from the [Pandas library](http://pandas.pydata.org) to load the data\n",
+    "function from the [Pandas library](https://pandas.pydata.org) to load the data\n",
     "in memory. We then print the first few columns: \n"
    ]
   },
index 00674e351e7a0b5e6546b688d6fe3d345b6e1e61..467bc83c27f877a328f248243bd040a25855ff24 100644 (file)
     "\n",
     "The time frame in the original paper varied across series, but was broadly 1954-1989. Below we use data from the period 1948-2008 for all series. Although the unobserved components approach allows isolating a seasonal component within the model, the series considered in the paper, and here, are already seasonally adjusted.\n",
     "\n",
-    "All data series considered here are taken from [Federal Reserve Economic Data (FRED)](https://research.stlouisfed.org/fred2/). Conveniently, the Python library [Pandas](http://pandas.pydata.org/) has the ability to download data from FRED directly."
+    "All data series considered here are taken from [Federal Reserve Economic Data (FRED)](https://research.stlouisfed.org/fred2/). Conveniently, the Python library [Pandas](https://pandas.pydata.org/) has the ability to download data from FRED directly."
    ]
   },
   {
index 7d922e337023e0a10ddfbe5497c61d4fd8e078a9..172bec240d16548fc6b48246a3a9ddda6ea5aab0 100644 (file)
@@ -47,7 +47,7 @@ sm.OLS.from_formula
 # All of the lower case models accept ``formula`` and ``data`` arguments,
 # whereas upper case ones take ``endog`` and ``exog`` design matrices.
 # ``formula`` accepts a string which describes the model in terms of a
-# ``patsy`` formula. ``data`` takes a [pandas](http://pandas.pydata.org/)
+# ``patsy`` formula. ``data`` takes a [pandas](https://pandas.pydata.org/)
 # data frame or any other data structure that defines a ``__getitem__`` for
 # variable names like a structured array or a dictionary of variables.
 #
index d6f55d041dcf8ef91b8ff0838a4737ffb768f3ab..cf34059a59c4cc9ba95621f46a6f64402153d4cd 100644 (file)
@@ -157,7 +157,7 @@ class NBin(GenericLikelihoodModel):
 # dataset is hosted in CSV format at the [Rdatasets repository](https://ra
 # w.githubusercontent.com/vincentarelbundock/Rdatasets). We use the
 # ``read_csv``
-# function from the [Pandas library](http://pandas.pydata.org) to load the
+# function from the [Pandas library](https://pandas.pydata.org) to load the
 # data
 # in memory. We then print the first few columns:
 #
index fb548d1cab17669852aeb35831ad6f942bbef599..4eb039138a878195dc12e65390a497db00444a98 100644 (file)
@@ -148,7 +148,7 @@ class ExpandedNormal(rv_continuous):
          specification of distributions, Revue de l'Institut Internat.
          de Statistique. 5: 307 (1938), reprinted in
          R.A. Fisher, Contributions to Mathematical Statistics. Wiley, 1950.
-    .. [*] http://en.wikipedia.org/wiki/Edgeworth_series
+    .. [*] https://en.wikipedia.org/wiki/Edgeworth_series
     .. [*] S. Blinnikov and R. Moessner, Expansions for nearly Gaussian
         distributions, Astron. Astrophys. Suppl. Ser. 130, 193 (1998)
 
index 91d10a449549b0aee60b705d37d670192e06fa89..34035db5193484664620c80a7a2682dc7e76aedc 100644 (file)
@@ -39,7 +39,7 @@ if __name__ == '__main__':
 
     res = res_ols #alias
 
-    #http://en.wikipedia.org/wiki/PRESS_statistic
+    #https://en.wikipedia.org/wiki/PRESS_statistic
     #predicted residuals, leave one out predicted residuals
     resid_press = res.resid / (1-hh)
     ess_press = np.dot(resid_press, resid_press)
@@ -47,7 +47,7 @@ if __name__ == '__main__':
     sigma2_est = np.sqrt(res.mse_resid) #can be replace by different estimators of sigma
     sigma_est = np.sqrt(sigma2_est)
     resid_studentized = res.resid / sigma_est / np.sqrt(1 - hh)
-    #http://en.wikipedia.org/wiki/DFFITS:
+    #https://en.wikipedia.org/wiki/DFFITS:
     dffits = resid_studentized * np.sqrt(hh / (1 - hh))
 
     nobs, k_vars = res.model.exog.shape
@@ -56,7 +56,7 @@ if __name__ == '__main__':
 
     res_ols.df_modelwc = res_ols.df_model + 1
     n_params = res.model.exog.shape[1]
-    #http://en.wikipedia.org/wiki/Cook%27s_distance
+    #https://en.wikipedia.org/wiki/Cook%27s_distance
     cooks_d = res.resid**2 / sigma2_est / res_ols.df_modelwc * hh / (1 - hh)**2
     #or
     #Eubank p.93, 94
index dcb45f3819e5474ef1c1b9dfe09c808c6df11417..c209818b37bea4b73628ee271c3dc37013cee8d6 100644 (file)
@@ -452,7 +452,7 @@ def hdrboxplot(data, ncomp=2, alpha=None, threshold=0.95, bw=None,
     handles, labels = ax.get_legend_handles_labels()
 
     # Proxy artist for fill_between legend entry
-    # See http://matplotlib.org/1.3.1/users/legend_guide.html
+    # See https://matplotlib.org/1.3.1/users/legend_guide.html
     plt = _import_mpl()
     for label, fill_between in zip(['50% HDR', '90% HDR'], fill_betweens):
         p = plt.Rectangle((0, 0), 1, 1,
index 14e480b58ad07eddbad86ba14e0e784ac6b6c6d7..3ede11b9e295fa40b6a6c8d3a4c6b73ae549782c 100644 (file)
@@ -4,7 +4,7 @@ Author: Josef Perktold
 License: BSD-3
 
 TODO: update script to use sharex, sharey, and visible=False
-    see http://www.scipy.org/Cookbook/Matplotlib/Multiple_Subplots_with_One_Axis_Label
+    see https://www.scipy.org/Cookbook/Matplotlib/Multiple_Subplots_with_One_Axis_Label
     for sharex I need to have the ax of the last_row when editing the earlier
     rows. Or you axes_grid1, imagegrid
     http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/overview.html
index f29e3c1bfb6197fbca3c0313bd049206ef1b960c..87cb25851f8bc05613d0c95eac11dd45a516ae3f 100644 (file)
@@ -7,7 +7,7 @@ Racine, Jeff. (2008) "Nonparametric Econometrics: A Primer," Foundation and
     Trends in Econometrics: Vol 3: No 1, pp1-88.
     http://dx.doi.org/10.1561/0800000009
 
-http://en.wikipedia.org/wiki/Kernel_%28statistics%29
+https://en.wikipedia.org/wiki/Kernel_%28statistics%29
 
 Silverman, B.W.  Density Estimation for Statistics and Data Analysis.
 """
index cd5ce2f24977efcb68df8d0dae77434f5c7a2d21..ceed04fa7688674dfbe028e5e92541712b0793c7 100644 (file)
@@ -214,7 +214,7 @@ class KDEMultivariate(GenericKDE):
 
         Notes
         -----
-        See http://en.wikipedia.org/wiki/Cumulative_distribution_function
+        See https://en.wikipedia.org/wiki/Cumulative_distribution_function
         For more details on the estimation see Ref. [5] in module docstring.
 
         The multivariate CDF for mixed data (continuous and ordered/unordered
@@ -392,7 +392,7 @@ class KDEMultivariateConditional(GenericKDE):
 
     References
     ----------
-    .. [1] http://en.wikipedia.org/wiki/Conditional_probability_distribution
+    .. [1] https://en.wikipedia.org/wiki/Conditional_probability_distribution
 
     Examples
     --------
index 90c6b08c977495c2a396dc600fa1fd2ae1d21b42..11f45bc7dd3d2a53208030fe4258308d3529124d 100644 (file)
@@ -1283,7 +1283,7 @@ def yule_walker(X, order=1, method="unbiased", df=None, inv=False,
 
     See, for example:
 
-    http://en.wikipedia.org/wiki/Autoregressive_moving_average_model
+    https://en.wikipedia.org/wiki/Autoregressive_moving_average_model
 
     Parameters
     ----------
index 363d6d1684411a8e94921bde82b69fca38440e38..982859f27afa91793c7e8cafb116edf5dd216064 100644 (file)
@@ -615,7 +615,7 @@ class RecursiveLSResults(MLEResults):
                 # Only add CI to legend for the first plot
                 if i == 0:
                     # Proxy artist for fill_between legend entry
-                    # See http://matplotlib.org/1.3.1/users/legend_guide.html
+                    # See https://matplotlib.org/1.3.1/users/legend_guide.html
                     p = plt.Rectangle((0, 0), 1, 1,
                                       fc=ci_poly.get_facecolor()[0])
 
index ec702cc8a2ac0379027a4aecb22259dd407da183..58f2a1e332e52483e2cb7b3457ff806f777a264d 100644 (file)
@@ -302,7 +302,7 @@ def pdf_mvsk(mvsk):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Edgeworth_series
+    https://en.wikipedia.org/wiki/Edgeworth_series
     Johnson N.L., S. Kotz, N. Balakrishnan: Continuous Univariate
     Distributions, Volume 1, 2nd ed., p.30
     """
@@ -350,7 +350,7 @@ def pdf_moments(cnt):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Edgeworth_series
+    https://en.wikipedia.org/wiki/Edgeworth_series
     Johnson N.L., S. Kotz, N. Balakrishnan: Continuous Univariate
     Distributions, Volume 1, 2nd ed., p.30
     """
index 1b06bf1a816c7e174f9edfe2456e03100ebcac78..52569a024a977885440e82af37075a3bfe47220b 100644 (file)
@@ -8,7 +8,7 @@ Author: Josef Perktold
 Notes:
 
 Compound Poisson has mass point at zero
-http://en.wikipedia.org/wiki/Compound_Poisson_distribution
+https://en.wikipedia.org/wiki/Compound_Poisson_distribution
 and would need special treatment
 
 need a distribution that has discrete mass points and contiuous range, e.g.
index b6abe66352089a029ed19948be9708df033bdfc1..0d4b9ea5b513e9f5d6a89d51f5343a343a2a8dec 100644 (file)
@@ -78,7 +78,7 @@ def _fitstart_beta(self, x, fixed=None):
     References
     ----------
     for method of moment estimator for known loc and scale
-    http://en.wikipedia.org/wiki/Beta_distribution#Parameter_estimation
+    https://en.wikipedia.org/wiki/Beta_distribution#Parameter_estimation
     http://www.itl.nist.gov/div898/handbook/eda/section3/eda366h.htm
     NIST reference also includes reference to MLE in
     Johnson, Kotz, and Balakrishan, Volume II, pages 221-235
@@ -140,7 +140,7 @@ def _fitstart_poisson(self, x, fixed=None):
     References
     ----------
     MLE :
-    http://en.wikipedia.org/wiki/Poisson_distribution#Maximum_likelihood
+    https://en.wikipedia.org/wiki/Poisson_distribution#Maximum_likelihood
 
     '''
     #todo: separate out this part to be used for other compact support distributions
index fae28f0d22fc506ed7c9eca2281dfe641a33f578..aad33d493b3642dca6e596acdbd8a09767eb6972 100644 (file)
@@ -33,7 +33,7 @@ class GaussProcess(object):
     * automatic selection or proposal of smoothing parameters
 
     Note: this is different from kernel smoothing regression,
-       see for example http://en.wikipedia.org/wiki/Kernel_smoother
+       see for example https://en.wikipedia.org/wiki/Kernel_smoother
 
     In this version of the kernel ridge regression, the training points
     are fitted exactly.
index 3ee099ddf056eefe56df22fcf3e82c1ee0548fe4..cbd0a34674c5319a0693ef66946165dabb231caf 100644 (file)
@@ -584,7 +584,7 @@ def het_breuschpagan(resid, exog_het):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Breusch%E2%80%93Pagan_test
+    https://en.wikipedia.org/wiki/Breusch%E2%80%93Pagan_test
     Greene 5th edition
     Breusch, Pagan article
 
index 21d21555a0487c9f81edb2f3374e2a67164f3ff1..5087468e0272116ce6fb8e67ecc1a7faa969efe8 100644 (file)
@@ -469,7 +469,7 @@ def cochrans_q(x):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Cochran_test
+    https://en.wikipedia.org/wiki/Cochran_test
     SAS Manual for NPAR TESTS
 
     '''
index 5b22f2ca56eab5a91d093d7c19e01b0e9feac538..d3da463d7d48217d872f5415181fb13d5ce57bb0 100644 (file)
@@ -60,8 +60,8 @@ def VAR(x,B, const=0):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Vector_Autoregression
-    http://en.wikipedia.org/wiki/General_matrix_notation_of_a_VAR(p)
+    https://en.wikipedia.org/wiki/Vector_Autoregression
+    https://en.wikipedia.org/wiki/General_matrix_notation_of_a_VAR(p)
     '''
     p = B.shape[0]
     T = x.shape[0]
index 9438c51c555ef396c7ad0ed04b09505d6f056cde..38ad16f1c4f3714f5dc5cf543d1af1fd18301c2d 100644 (file)
@@ -1383,7 +1383,7 @@ def cochrans_q(x, return_object=True):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Cochran_test
+    https://en.wikipedia.org/wiki/Cochran_test
     SAS Manual for NPAR TESTS
     """
 
index e4b03a51990cbd37fcb95ede83d5b95549e137d4..36726bbf4bf75c6885dd2cc4a181e2c9f357603d 100644 (file)
@@ -18,8 +18,8 @@ License: BSD-3
 References
 ----------
 Wikipedia: kappa's initially based on these two pages
-    http://en.wikipedia.org/wiki/Fleiss%27_kappa
-    http://en.wikipedia.org/wiki/Cohen's_kappa
+    https://en.wikipedia.org/wiki/Fleiss%27_kappa
+    https://en.wikipedia.org/wiki/Cohen's_kappa
 SAS-Manual : formulas for cohens_kappa, especially variances
 see also R package irr
 
@@ -226,7 +226,7 @@ def fleiss_kappa(table, method='fleiss'):
 
     References
     ----------
-    Wikipedia http://en.wikipedia.org/wiki/Fleiss%27_kappa
+    Wikipedia https://en.wikipedia.org/wiki/Fleiss%27_kappa
 
     Fleiss, Joseph L. 1971. "Measuring Nominal Scale Agreement among Many
     Raters." Psychological Bulletin 76 (5): 378-82.
index 4bbfeb4c5da88f2713f44752ced07fb83a345ff0..a65dd3362136b55de12c50f7832e4e1622163537 100644 (file)
@@ -114,7 +114,7 @@ def mnc2cum(mnc):
     """convert non-central moments to cumulants
     recursive formula produces as many cumulants as moments
 
-    http://en.wikipedia.org/wiki/Cumulant#Cumulants_and_moments
+    https://en.wikipedia.org/wiki/Cumulant#Cumulants_and_moments
     """
     X = _convert_to_multidim(mnc)
 
index b33ab938c08221d3bb11d7f7b64557ea802c5640..088cc0361cfa2f30c14f86eded012b1c64463630 100644 (file)
@@ -122,7 +122,7 @@ def reset_ramsey(res, degree=5):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Ramsey_RESET_test
+    https://en.wikipedia.org/wiki/Ramsey_RESET_test
 
     """
     order = degree + 1
@@ -174,7 +174,7 @@ def variance_inflation_factor(exog, exog_idx):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Variance_inflation_factor
+    https://en.wikipedia.org/wiki/Variance_inflation_factor
 
     """
     k_vars = exog.shape[1]
@@ -748,7 +748,7 @@ class OLSInfluence(_BaseInfluenceMixin):
 
         References
         ----------
-        `Wikipedia <http://en.wikipedia.org/wiki/DFFITS>`_
+        `Wikipedia <https://en.wikipedia.org/wiki/DFFITS>`_
 
         """
         # TODO: do I want to use different sigma estimate in
index 327082827384eeb9afeaec55c1c75e08d00f2a2a..9d45501824b16b41f07500f7db99d0934d977373 100644 (file)
@@ -67,7 +67,7 @@ def proportion_confint(count, nobs, alpha=0.05, method='normal'):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Binomial_proportion_confidence_interval
+    https://en.wikipedia.org/wiki/Binomial_proportion_confidence_interval
 
     Brown, Lawrence D.; Cai, T. Tony; DasGupta, Anirban (2001). "Interval
         Estimation for a Binomial Proportion",
index 45abeeed60a92493feeec761f84d184fcec5c2e3..01c6ff35017f8effb2a4be3c9b4625117d280774 100644 (file)
@@ -330,7 +330,7 @@ def aic(llf, nobs, df_modelwc):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Akaike_information_criterion
+    https://en.wikipedia.org/wiki/Akaike_information_criterion
 
     """
     return -2. * llf + 2. * df_modelwc
@@ -355,7 +355,7 @@ def aicc(llf, nobs, df_modelwc):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Akaike_information_criterion#AICc
+    https://en.wikipedia.org/wiki/Akaike_information_criterion#AICc
 
     """
     return -2. * llf + 2. * df_modelwc * nobs / (nobs - df_modelwc - 1.)
@@ -380,7 +380,7 @@ def bic(llf, nobs, df_modelwc):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Bayesian_information_criterion
+    https://en.wikipedia.org/wiki/Bayesian_information_criterion
 
     """
     return -2. * llf + np.log(nobs) * df_modelwc
@@ -462,7 +462,7 @@ def aic_sigma(sigma2, nobs, df_modelwc, islog=False):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Akaike_information_criterion
+    https://en.wikipedia.org/wiki/Akaike_information_criterion
 
     """
     if not islog:
@@ -497,7 +497,7 @@ def aicc_sigma(sigma2, nobs, df_modelwc, islog=False):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Akaike_information_criterion#AICc
+    https://en.wikipedia.org/wiki/Akaike_information_criterion#AICc
 
     """
     if not islog:
@@ -532,7 +532,7 @@ def bic_sigma(sigma2, nobs, df_modelwc, islog=False):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Bayesian_information_criterion
+    https://en.wikipedia.org/wiki/Bayesian_information_criterion
 
     """
     if not islog:
index e913b577ffac656d5eb5ab12044c6fd5280df1d0..23ef7e361cea20f0ff2883d0f3d848bb26cc38d9 100644 (file)
@@ -36,13 +36,13 @@ without dependencies.
 #    also does it hold only at the minimum, what's relationship to covariance
 #    of Jacobian matrix
 # http://projects.scipy.org/scipy/ticket/1157
-# http://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
+# https://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
 #    objective: sum((y-f(beta,x)**2),   Jacobian = d f/d beta
 #    and not d objective/d beta as in MLE Greene
 #    similar: http://crsouza.blogspot.com/2009/11/neural-network-learning-by-levenberg_18.html#hessian
 #
 # in example: if J = d x*beta / d beta then J'J == X'X
-#    similar to http://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
+#    similar to https://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
 from __future__ import print_function
 from statsmodels.compat.python import range
 import numpy as np
index 3121e20d1641b9feb2d4187d4d7982f76a9dbd2a..d806340e1463b67676d21d2f660fc22e3e51bc02 100644 (file)
@@ -1610,7 +1610,7 @@ class UnobservedComponentsResults(MLEResults):
             ci_label = '$%.3g \\%%$ confidence interval' % ((1 - alpha) * 100)
 
             # Proxy artist for fill_between legend entry
-            # See e.g. http://matplotlib.org/1.3.1/users/legend_guide.html
+            # See e.g. https://matplotlib.org/1.3.1/users/legend_guide.html
             p = plt.Rectangle((0, 0), 1, 1, fc=ci_poly.get_facecolor()[0])
 
             # Legend
index 9cffdcde60989afc141972c3322ed7cfbf2b5f1a..95fbb7388851da8ef330d502d034caf395f5df4d 100644 (file)
@@ -1228,7 +1228,7 @@ def grangercausalitytests(x, maxlag, addconst=True, verbose=True):
 
     References
     ----------
-    http://en.wikipedia.org/wiki/Granger_causality
+    https://en.wikipedia.org/wiki/Granger_causality
     Greene: Econometric Analysis
 
     """
index 40e2a56b1135fa31b5029cb9e173fc4a590ccd9f..c3ebb647200f724c12b583a40a1b225f038b875a 100644 (file)
@@ -6,7 +6,7 @@ Author: Skipper Seabold <jsseabold@gmail.com>
 Maintainer: Skipper Seabold <jsseabold@gmail.com>
 Description: Writes R matrices, vectors, and scalars to a file as numpy arrays
 License: BSD
-URL: http://www.github.com/statsmodels/statsmodels
+URL: https://www.github.com/statsmodels/statsmodels
 Repository: github
 Collate:
     'R2nparray-package.R'
index 7e9bda2de032eaf0f571e1a44941062dfa99c6bd..83783d977bb23edeffa90d4f4676ff4d69a5bc88 100644 (file)
@@ -126,7 +126,7 @@ font.monospace       : Andale Mono, Nimbus Mono L, Courier New, Courier, Fixed,
 
 #text.color          : black
 
-### LaTeX customizations. See http://www.scipy.org/Wiki/Cookbook/Matplotlib/UsingTex
+### LaTeX customizations. See https://www.scipy.org/Wiki/Cookbook/Matplotlib/UsingTex
 #text.usetex         : False  # use latex for all text handling. The following fonts
                               # are supported through the usual rc parameter settings:
                               # new century schoolbook, bookman, times, palatino,
@@ -200,7 +200,7 @@ axes.axisbelow      : True   # whether axis gridlines and ticks are below
                                # of the axis range is smaller than the
                                # first or larger than the second
 #axes.unicode_minus  : True    # use unicode for the minus symbol
-                               # rather than hypen.  See http://en.wikipedia.org/wiki/Plus_sign#Plus_sign
+                               # rather than hypen.  See https://en.wikipedia.org/wiki/Plus_sign#Plus_sign
 axes.color_cycle    : 348ABD, 7A68A6, A60628, 467821, CF4457, 188487, E24A33
                       # E24A33 : orange
                       # 7A68A6 : purple
index 396b6a61580780c8c42ac28f838aa3440397c31c..0e7d2a2c8f14bf6c92ae89a09eb3cf232e72467f 100644 (file)
@@ -12,7 +12,7 @@
 # other platforms:
 #     $HOME/.matplotlib/matplotlibrc
 #
-# See http://matplotlib.org/users/customizing.html#the-matplotlibrc-file for
+# See https://matplotlib.org/users/customizing.html#the-matplotlibrc-file for
 # more details on the paths which are checked for the configuration file.
 #
 # This file is best viewed in a editor which supports python mode
@@ -76,7 +76,7 @@ backend.qt5 : PyQt5
 
 
 ### LINES
-# See http://matplotlib.org/api/artist_api.html#module-matplotlib.lines for more
+# See https://matplotlib.org/api/artist_api.html#module-matplotlib.lines for more
 # information on line properties.
 #lines.linewidth   : 1.0     # line width in points
 #lines.linestyle   : -       # solid line
@@ -95,7 +95,7 @@ backend.qt5 : PyQt5
 ### PATCHES
 # Patches are graphical objects that fill 2D space, like polygons or
 # circles.  See
-# http://matplotlib.org/api/artist_api.html#module-matplotlib.patches
+# https://matplotlib.org/api/artist_api.html#module-matplotlib.patches
 # information on patch properties
 #patch.linewidth        : 1.0     # edge width in points
 #patch.facecolor        : blue
@@ -105,7 +105,7 @@ backend.qt5 : PyQt5
 ### FONT
 #
 # font properties used by text.Text.  See
-# http://matplotlib.org/api/font_manager_api.html for more
+# https://matplotlib.org/api/font_manager_api.html for more
 # information on font properties.  The 6 font properties used for font
 # matching are given below with their default values.
 #
@@ -157,7 +157,7 @@ backend.qt5 : PyQt5
 
 ### TEXT
 # text properties used by text.Text.  See
-# http://matplotlib.org/api/artist_api.html#module-matplotlib.text for more
+# https://matplotlib.org/api/artist_api.html#module-matplotlib.text for more
 # information on text properties
 
 #text.color          : black
@@ -235,7 +235,7 @@ backend.qt5 : PyQt5
 ### AXES
 # default face and edge color, default tick sizes,
 # default fontsizes for ticklabels, and so on.  See
-# http://matplotlib.org/api/axes_api.html#module-matplotlib.axes
+# https://matplotlib.org/api/axes_api.html#module-matplotlib.axes
 #axes.hold           : True    # whether to clear the axes by default on
 #axes.facecolor      : white   # axes background color
 #axes.edgecolor      : black   # axes edge color
@@ -266,7 +266,7 @@ backend.qt5 : PyQt5
 
 #axes.unicode_minus  : True    # use unicode for the minus symbol
                                # rather than hyphen.  See
-                               # http://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes
+                               # https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes
 #axes.prop_cycle    : cycler('color', 'bgrcmyk')
                                             # color cycle for plot lines
                                             # as list of string colorspecs:
@@ -279,7 +279,7 @@ backend.qt5 : PyQt5
 #axes3d.grid         : True    # display grid on 3d axes
 
 ### TICKS
-# see http://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
+# see https://matplotlib.org/api/axis_api.html#matplotlib.axis.Tick
 #xtick.major.size     : 4      # major tick size in points
 #xtick.minor.size     : 2      # minor tick size in points
 #xtick.major.width    : 0.5    # major tick width in points
@@ -328,7 +328,7 @@ backend.qt5 : PyQt5
 #legend.scatterpoints : 3 # number of scatter points
 
 ### FIGURE
-# See http://matplotlib.org/api/figure_api.html#matplotlib.figure.Figure
+# See https://matplotlib.org/api/figure_api.html#matplotlib.figure.Figure
 #figure.titlesize : medium     # size of the figure title
 #figure.titleweight : normal   # weight of the figure title
 #figure.figsize   : 8, 6    # figure size in inches
index b4d303a5e146112aa37b1cd2e46cfd09fea2f893..d1887137d8810c1022788463eb63d5be2a8e7bca 100644 (file)
@@ -9,7 +9,7 @@ notebook_template = Template("""
 
 $body
 
-   <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
+   <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
    <script type="text/javascript">
    init_mathjax = function() {
        if (window.MathJax) {