Report loading failed!

You're probably seeing this because this report was created without embedded figures and your browser does not allow locally-loaded html files to load other local files (i.e. the figures). This is a security restriction present in many common browsers. There are several things you can do to fix this problem:

  • Switch to Firefox and cross your fingers: some versions of Firefox allow files to load other files by default, so if you're not using Firefox right now just switching to Firefox may cause this report to load properly.
  • Run a local web server: Running a local web server and loading this page (main.html) through the web server instead of by opening the file directly (so the address bar begins with http:// instead of file:// will almost certainly fix any problems. A couple fairly simple ways of doing this are:
    1. If you have Python installed, running
      python3 -m http.server
      from a command line will start a local web server rooted in the current directory. Access this server from a browser by typing
      localhost:8000
      in the address bar. Navigate from there to main.html and you should be all set.
    2. If you have the Google Chrome browser (even if you're not using it), then download the Web Server for Chrome app (do a web search to find the app on Google's web store) and follow the instructions to start a local web server running out of a given local directory.