Notes on experiment design, statistics, empirical model-building, factorial and composite designs, response surfaces, and linear models.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Charles Reid 872e310a55 Splash page is only finished notebooks 6 years ago
content Splash page is only finished notebooks 6 years ago
docs Splash page is only finished notebooks 6 years ago
notebooks Update part 2 of lecture notes, 2A,, 2B, 2C 6 years ago
.gitignore Updating output, github links, and sidebar theme 6 years ago
LICENSE Update LICENSE 6 years ago
README.md fix http to https 6 years ago
TODO.md update todo 6 years ago
pelicanconf.py hopefully fix site-url 6 years ago

README.md

experimental-design

Notes on experiment design, statistics, empirical model-building, factorial and composite designs, response surfaces, Monte Carlo, and linear models.

On the Web: https://charlesreid1.github.io/experiment-design-notes

On Github: https://github.com/charlesreid1/experiment-design-notes



HTML Pages and Notebooks

The main output of the repository consists of HTML pages and Jupyter notebooks containing lecture notes and example problems on various experimental design topics.

To generate these, use Pelican (see next section).



Pelican Source Code

The source code for creating the HTMl and Jupyter notebooks is organized as follows:

  • Pelican is the Python module used to turn raw content into web content

    • pelicanconf.py is the main Pelican "Makefile"
    • content/ directory will contain any pelican content
  • Raw content in content/ is turned into static web content in docs

    • Use pelican content command
  • Jupyter notebooks are converted to HTML and added to docs

    • Jupyter nbconvert commands should be called by pelicanconf.py
  • Static content in docs is hosted on Github Pages

    • See link at top

Configuration file:

The Pelican configuration file is pelicanconf.py.

Raw Content:

Pelican turns raw content (markdown, HTML-like Jinja templates) into static HTML content.

The default location for Pelican content is content/. This is where it looks for markdown files to turn into static content. You can add more locations by adding to the list EXTRA_TEMPLATE_PATHS in pelicanconf.py.

Markdown files in content/ will be rendered as blog posts. This is problematic if there is no support for blog stuff, as with the theme we are using,

Markdown files in content/pages/ will be rendered as static HTML pages. Easy peasy.

Theme:

The basic template files are contained in the theme folder. To add your own templates to customize the theme, add more paths containing templates to the EXTRA_TEMPLATES_PATHS list in pelicanconf.py.

Also explicitly add HTML template pages like this:

TEMPLATE_PAGES['mypage.html'] = 'mypage.html'
TEMPLATE_PAGES['custompath.html'] = 'custom/path/custompath.html'

We use this to turn a custom HTML template into an index/splash page:

TEMPLATE_PAGES['splash.html'] = 'index.html'

Splash/Landing Page:

The splash/landing page is a Jinja template at content/splash.html. It is converted into the destination file index.html as per pelicanconf.py. To modify the template, just edit splash.html. To use a different template as the splash page, just modify pelicanconf.py.