<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>DAPPER Stats</title>
    <link>/</link>
      <atom:link href="/index.xml" rel="self" type="application/rss+xml" />
    <description>DAPPER Stats</description>
    <generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><copyright>© DAPPER Stats, 2024</copyright><lastBuildDate>Sat, 01 Jun 2030 13:00:00 +0000</lastBuildDate>
    <image>
      <url>/img/share_logo.jpg</url>
      <title>DAPPER Stats</title>
      <link>/</link>
    </image>
    
    <item>
      <title>Example Talk</title>
      <link>/talk/example/</link>
      <pubDate>Sat, 01 Jun 2030 13:00:00 +0000</pubDate>
      <guid>/talk/example/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click on the &lt;strong&gt;Slides&lt;/strong&gt; button above to view the built-in slides feature.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Slides can be added in a few ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Create&lt;/strong&gt; slides using Academic&amp;rsquo;s 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#create-slides&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;em&gt;Slides&lt;/em&gt;&lt;/a&gt; feature and link using &lt;code&gt;slides&lt;/code&gt; parameter in the front matter of the talk file&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Upload&lt;/strong&gt; an existing slide deck to &lt;code&gt;static/&lt;/code&gt; and link using &lt;code&gt;url_slides&lt;/code&gt; parameter in the front matter of the talk file&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Embed&lt;/strong&gt; your slides (e.g. Google Slides) or presentation video on this page using 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;shortcodes&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Further talk details can easily be added to this page using &lt;em&gt;Markdown&lt;/em&gt; and $\rm \LaTeX$ math code.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>American Wind Wildlife Information Center Analysis Software</title>
      <link>/publication/simonis_and_larsen_2020/</link>
      <pubDate>Wed, 01 Jan 2020 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_and_larsen_2020/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Crescent Dunes Solar Project avian mortality analyses with multi-year rates</title>
      <link>/publication/simonis_2020a/</link>
      <pubDate>Wed, 01 Jan 2020 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2020a/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Measuring the strength of vegetational seasonality</title>
      <link>/publication/simonis_2020b/</link>
      <pubDate>Wed, 01 Jan 2020 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2020b/</guid>
      <description></description>
    </item>
    
    <item>
      <title>The influence of data type and functional traits on native bee phenology metrics: Opportunistic versus inventory records</title>
      <link>/publication/meiners_etal_2020/</link>
      <pubDate>Wed, 01 Jan 2020 00:00:00 +0000</pubDate>
      <guid>/publication/meiners_etal_2020/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Writing technical content in Academic</title>
      <link>/2019/07/12/writing-technical-content-in-academic/</link>
      <pubDate>Fri, 12 Jul 2019 00:00:00 +0000</pubDate>
      <guid>/2019/07/12/writing-technical-content-in-academic/</guid>
      <description>&lt;p&gt;Academic is designed to give technical content creators a seamless experience. You can focus on the content and Academic handles the rest.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Highlight your code snippets, take notes on math classes, and draw diagrams from textual representation.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;On this page, you&amp;rsquo;ll find some examples of the types of technical content that can be rendered with Academic.&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;h3 id=&#34;code&#34;&gt;Code&lt;/h3&gt;
&lt;p&gt;Academic supports a Markdown extension for highlighting code syntax. You can enable this feature by toggling the &lt;code&gt;highlight&lt;/code&gt; option in your &lt;code&gt;config/_default/params.toml&lt;/code&gt; file.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```python
import pandas as pd
data = pd.read_csv(&amp;quot;data.csv&amp;quot;)
data.head()
```
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;import pandas as pd
data = pd.read_csv(&amp;quot;data.csv&amp;quot;)
data.head()
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&#34;math&#34;&gt;Math&lt;/h3&gt;
&lt;p&gt;Academic supports a Markdown extension for $\LaTeX$ math. You can enable this feature by toggling the &lt;code&gt;math&lt;/code&gt; option in your &lt;code&gt;config/_default/params.toml&lt;/code&gt; file.&lt;/p&gt;
&lt;p&gt;To render &lt;em&gt;inline&lt;/em&gt; or &lt;em&gt;block&lt;/em&gt; math, wrap your LaTeX math with &lt;code&gt;$...$&lt;/code&gt; or &lt;code&gt;$$...$$&lt;/code&gt;, respectively.&lt;/p&gt;
&lt;p&gt;Example &lt;strong&gt;math block&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-tex&#34;&gt;$$\gamma_{n} = \frac{ 
\left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T 
\left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}
{\left \|\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right \|^2}$$
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;p&gt;$$\gamma_{n} = \frac{ \left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T \left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}{\left |\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right |^2}$$&lt;/p&gt;
&lt;p&gt;Example &lt;strong&gt;inline math&lt;/strong&gt; &lt;code&gt;$\nabla F(\mathbf{x}_{n})$&lt;/code&gt; renders as $\nabla F(\mathbf{x}_{n})$.&lt;/p&gt;
&lt;p&gt;Example &lt;strong&gt;multi-line math&lt;/strong&gt; using the &lt;code&gt;\\&lt;/code&gt; math linebreak:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-tex&#34;&gt;$$f(k;p_0^*) = \begin{cases} p_0^* &amp;amp; \text{if }k=1, \\
1-p_0^* &amp;amp; \text {if }k=0.\end{cases}$$
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;p&gt;$$f(k;p_0^*) = \begin{cases} p_0^* &amp;amp; \text{if }k=1, \&lt;br&gt;
1-p_0^* &amp;amp; \text {if }k=0.\end{cases}$$&lt;/p&gt;
&lt;h3 id=&#34;diagrams&#34;&gt;Diagrams&lt;/h3&gt;
&lt;p&gt;Academic supports a Markdown extension for diagrams. You can enable this feature by toggling the &lt;code&gt;diagram&lt;/code&gt; option in your &lt;code&gt;config/_default/params.toml&lt;/code&gt; file or by adding &lt;code&gt;diagram: true&lt;/code&gt; to your page front matter.&lt;/p&gt;
&lt;p&gt;An example &lt;strong&gt;flowchart&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```mermaid
graph TD
A[Hard] --&amp;gt;|Text| B(Round)
B --&amp;gt; C{Decision}
C --&amp;gt;|One| D[Result 1]
C --&amp;gt;|Two| E[Result 2]
```
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mermaid&#34;&gt;graph TD
A[Hard] --&amp;gt;|Text| B(Round)
B --&amp;gt; C{Decision}
C --&amp;gt;|One| D[Result 1]
C --&amp;gt;|Two| E[Result 2]
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;An example &lt;strong&gt;sequence diagram&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```mermaid
sequenceDiagram
Alice-&amp;gt;&amp;gt;John: Hello John, how are you?
loop Healthcheck
    John-&amp;gt;&amp;gt;John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John--&amp;gt;&amp;gt;Alice: Great!
John-&amp;gt;&amp;gt;Bob: How about you?
Bob--&amp;gt;&amp;gt;John: Jolly good!
```
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mermaid&#34;&gt;sequenceDiagram
Alice-&amp;gt;&amp;gt;John: Hello John, how are you?
loop Healthcheck
    John-&amp;gt;&amp;gt;John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John--&amp;gt;&amp;gt;Alice: Great!
John-&amp;gt;&amp;gt;Bob: How about you?
Bob--&amp;gt;&amp;gt;John: Jolly good!
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;An example &lt;strong&gt;Gantt diagram&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```mermaid
gantt
section Section
Completed :done,    des1, 2014-01-06,2014-01-08
Active        :active,  des2, 2014-01-07, 3d
Parallel 1   :         des3, after des1, 1d
Parallel 2   :         des4, after des1, 1d
Parallel 3   :         des5, after des3, 1d
Parallel 4   :         des6, after des4, 1d
```
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mermaid&#34;&gt;gantt
section Section
Completed :done,    des1, 2014-01-06,2014-01-08
Active        :active,  des2, 2014-01-07, 3d
Parallel 1   :         des3, after des1, 1d
Parallel 2   :         des4, after des1, 1d
Parallel 3   :         des5, after des3, 1d
Parallel 4   :         des6, after des4, 1d
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;An example &lt;strong&gt;class diagram&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```mermaid
classDiagram
Class01 &amp;lt;|-- AveryLongClass : Cool
&amp;lt;&amp;lt;interface&amp;gt;&amp;gt; Class01
Class09 --&amp;gt; C2 : Where am i?
Class09 --* C3
Class09 --|&amp;gt; Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
class Class10 {
  &amp;lt;&amp;lt;service&amp;gt;&amp;gt;
  int id
  size()
}
```
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mermaid&#34;&gt;classDiagram
Class01 &amp;lt;|-- AveryLongClass : Cool
&amp;lt;&amp;lt;interface&amp;gt;&amp;gt; Class01
Class09 --&amp;gt; C2 : Where am i?
Class09 --* C3
Class09 --|&amp;gt; Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
class Class10 {
  &amp;lt;&amp;lt;service&amp;gt;&amp;gt;
  int id
  size()
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;An example &lt;strong&gt;state diagram&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```mermaid
stateDiagram
[*] --&amp;gt; Still
Still --&amp;gt; [*]
Still --&amp;gt; Moving
Moving --&amp;gt; Still
Moving --&amp;gt; Crash
Crash --&amp;gt; [*]
```
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mermaid&#34;&gt;stateDiagram
[*] --&amp;gt; Still
Still --&amp;gt; [*]
Still --&amp;gt; Moving
Moving --&amp;gt; Still
Moving --&amp;gt; Crash
Crash --&amp;gt; [*]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&#34;todo-lists&#34;&gt;Todo lists&lt;/h3&gt;
&lt;p&gt;You can even write your todo lists in Academic too:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-markdown&#34;&gt;- [x] Write math example
- [x] Write diagram example
- [ ] Do something else
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input checked=&#34;&#34; disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Write math example&lt;/li&gt;
&lt;li&gt;&lt;input checked=&#34;&#34; disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Write diagram example&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Do something else&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;tables&#34;&gt;Tables&lt;/h3&gt;
&lt;p&gt;Represent your data in tables:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-markdown&#34;&gt;| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;First Header&lt;/th&gt;
&lt;th&gt;Second Header&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Content Cell&lt;/td&gt;
&lt;td&gt;Content Cell&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Content Cell&lt;/td&gt;
&lt;td&gt;Content Cell&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;asides&#34;&gt;Asides&lt;/h3&gt;
&lt;p&gt;Academic supports a 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/#alerts&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;shortcode for asides&lt;/a&gt;, also referred to as &lt;em&gt;notices&lt;/em&gt;, &lt;em&gt;hints&lt;/em&gt;, or &lt;em&gt;alerts&lt;/em&gt;. By wrapping a paragraph in &lt;code&gt;{{% alert note %}} ... {{% /alert %}}&lt;/code&gt;, it will render as an aside.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-markdown&#34;&gt;{{% alert note %}}
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
{{% /alert %}}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
  &lt;/div&gt;
&lt;/div&gt;
&lt;h3 id=&#34;icons&#34;&gt;Icons&lt;/h3&gt;
&lt;p&gt;Academic enables you to use a wide range of 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/page-builder/#icons&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;icons from &lt;em&gt;Font Awesome&lt;/em&gt; and &lt;em&gt;Academicons&lt;/em&gt;&lt;/a&gt; in addition to 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/#emojis&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;emojis&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Here are some examples using the &lt;code&gt;icon&lt;/code&gt; shortcode to render icons:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-markdown&#34;&gt;{{&amp;lt; icon name=&amp;quot;terminal&amp;quot; pack=&amp;quot;fas&amp;quot; &amp;gt;}} Terminal  
{{&amp;lt; icon name=&amp;quot;python&amp;quot; pack=&amp;quot;fab&amp;quot; &amp;gt;}} Python  
{{&amp;lt; icon name=&amp;quot;r-project&amp;quot; pack=&amp;quot;fab&amp;quot; &amp;gt;}} R
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;renders as&lt;/p&gt;
&lt;p&gt;
  &lt;i class=&#34;fas fa-terminal  pr-1 fa-fw&#34;&gt;&lt;/i&gt; Terminal&lt;br&gt;

  &lt;i class=&#34;fab fa-python  pr-1 fa-fw&#34;&gt;&lt;/i&gt; Python&lt;br&gt;

  &lt;i class=&#34;fab fa-r-project  pr-1 fa-fw&#34;&gt;&lt;/i&gt; R&lt;/p&gt;
&lt;h3 id=&#34;did-you-find-this-page-helpful-consider-sharing-it-&#34;&gt;Did you find this page helpful? Consider sharing it 🙌&lt;/h3&gt;
</description>
    </item>
    
    <item>
      <title>Display Jupyter Notebooks with Academic</title>
      <link>/2019/02/05/display-jupyter-notebooks-with-academic/</link>
      <pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
      <guid>/2019/02/05/display-jupyter-notebooks-with-academic/</guid>
      <description>&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;from IPython.core.display import Image
Image(&#39;https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png&#39;)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&#34;./index_1_0.png&#34; alt=&#34;png&#34;&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;print(&amp;quot;Welcome to Academic!&amp;quot;)
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;Welcome to Academic!
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;install-python-and-jupyterlab&#34;&gt;Install Python and JupyterLab&lt;/h2&gt;
&lt;p&gt;
&lt;a href=&#34;https://www.anaconda.com/distribution/#download-section&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Install Anaconda&lt;/a&gt; which includes Python 3 and JupyterLab.&lt;/p&gt;
&lt;p&gt;Alternatively, install JupyterLab with &lt;code&gt;pip3 install jupyterlab&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;create-or-upload-a-jupyter-notebook&#34;&gt;Create or upload a Jupyter notebook&lt;/h2&gt;
&lt;p&gt;Run the following commands in your Terminal, substituting &lt;code&gt;&amp;lt;MY-WEBSITE-FOLDER&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;SHORT-POST-TITLE&amp;gt;&lt;/code&gt; with the file path to your Academic website folder and a short title for your blog post (use hyphens instead of spaces), respectively:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;mkdir -p &amp;lt;MY-WEBSITE-FOLDER&amp;gt;/content/post/&amp;lt;SHORT-POST-TITLE&amp;gt;/
cd &amp;lt;MY-WEBSITE-FOLDER&amp;gt;/content/post/&amp;lt;SHORT-POST-TITLE&amp;gt;/
jupyter lab index.ipynb
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The &lt;code&gt;jupyter&lt;/code&gt; command above will launch the JupyterLab editor, allowing us to add Academic metadata and write the content.&lt;/p&gt;
&lt;h2 id=&#34;edit-your-post-metadata&#34;&gt;Edit your post metadata&lt;/h2&gt;
&lt;p&gt;The first cell of your Jupter notebook will contain your post metadata (
&lt;a href=&#34;https://sourcethemes.com/academic/docs/front-matter/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;front matter&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;In Jupter, choose &lt;em&gt;Markdown&lt;/em&gt; as the type of the first cell and wrap your Academic metadata in three dashes, indicating that it is YAML front matter:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: My post&#39;s title
date: 2019-09-01

# Put any other Academic metadata here...
---
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Edit the metadata of your post, using the 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;documentation&lt;/a&gt; as a guide to the available options.&lt;/p&gt;
&lt;p&gt;To set a 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#featured-image&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;featured image&lt;/a&gt;, place an image named &lt;code&gt;featured&lt;/code&gt; into your post&amp;rsquo;s folder.&lt;/p&gt;
&lt;p&gt;For other tips, such as using math, see the guide on 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;writing content with Academic&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;convert-notebook-to-markdown&#34;&gt;Convert notebook to Markdown&lt;/h2&gt;
&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;jupyter nbconvert index.ipynb --to markdown --NbConvertApp.output_files_dir=.
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;example&#34;&gt;Example&lt;/h2&gt;
&lt;p&gt;This post was created with Jupyter. The orginal files can be found at &lt;a href=&#34;https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter&#34;&gt;https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>A multistate dynamic occupancy model to estimate local colonization–extinction rates and patterns of co-occurrence between two or more interacting species</title>
      <link>/publication/fidino_etal_2019/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/fidino_etal_2019/</guid>
      <description></description>
    </item>
    
    <item>
      <title>American Wind Wildlife Information Center Analysis Framework</title>
      <link>/publication/simonis_2019f/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2019f/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Bendire’s and Le Conte’s thrasher territory site selection analysis</title>
      <link>/publication/simonis_2019b/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2019b/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Crescent Dunes Solar Project Avian Mortality Analyses</title>
      <link>/publication/simonis_2019c/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2019c/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Juvenile steelhead and chinook production and smolt survival. 2018 Annual Progress Report for the Umatilla Basin Natural Production Monitoring and Evaluation Project</title>
      <link>/publication/caldwell_etal_2019/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/caldwell_etal_2019/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Juvenile steelhead and chinook production and smolt survival. 2019 Annual Progress Report for the Umatilla Basin Natural Production Monitoring and Evaluation Project</title>
      <link>/publication/flaherty_etal_2020/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/flaherty_etal_2020/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Mesquite effects on understory plants</title>
      <link>/publication/simonis_2019e/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2019e/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Pinyon Jay site selection analyses</title>
      <link>/publication/simonis_2019d/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2019d/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Population viability analysis modeling to support releases of sihek (Todiramphus cinnamominus)</title>
      <link>/publication/simonis_2019a/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2019a/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Prey availability, environmental constraints, and aggregation dictate distribution of an imperiled fish</title>
      <link>/publication/simonis_and_merz_2019/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_and_merz_2019/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Uncovering challenges to sustainability of AZA Animal Programs by evaluating the outcomes of breeding and transfer recommendations with PMCTrack</title>
      <link>/publication/faust_etal_2019/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/faust_etal_2019/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Crescent Dunes Solar Project Avian Mortality Analyses</title>
      <link>/publication/simonis_2018c/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2018c/</guid>
      <description></description>
    </item>
    
    <item>
      <title>GenEst Statistical Models—A Generalized Estimator of Mortality</title>
      <link>/publication/dalthorp_etal_2018/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/dalthorp_etal_2018/</guid>
      <description></description>
    </item>
    
    <item>
      <title>GenEst User Guide—Software for a Generalized Estimator of Mortaltiy</title>
      <link>/publication/simonis_etal_2018b/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_etal_2018b/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Journal editors should not divide scientists</title>
      <link>/publication/zaringhalam_etal_2018/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/zaringhalam_etal_2018/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Juvenile steelhead and chinook production and smolt survival. 2017 Annual Progress Report for the Umatilla Basin Natural Production Monitoring and Evaluation Project</title>
      <link>/publication/caldwell_etal_2018/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/caldwell_etal_2018/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Kawailoa Wind Farm fatality estimation evaluation</title>
      <link>/publication/simonis_2018b/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2018b/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Movement and mixing in a managed metapopulation of the critically endangered red wolf</title>
      <link>/publication/simonis_etal_2018a/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_etal_2018a/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Pinyon Jay Nest Site Selection Analyses</title>
      <link>/publication/simonis_2018a/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2018a/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Statistical Review of Quantitative Vegetation Monitoring</title>
      <link>/publication/simonis_2018d/</link>
      <pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2018d/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Clifton Court Forebay Predator Removal Consumption Analysis Methods</title>
      <link>/publication/simonis_2017b/</link>
      <pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2017b/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Crescent Dunes Solar Project Avian Use and Mortality Analyses</title>
      <link>/publication/simonis_2017d/</link>
      <pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2017d/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Dry Creek Temperature Modeling and Bioenergetics Report</title>
      <link>/publication/merz_etal_2017/</link>
      <pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
      <guid>/publication/merz_etal_2017/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Estimation of Fatalities at Renewable Wind Facilities</title>
      <link>/publication/simonis_2017a/</link>
      <pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2017a/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Gunsight Fatality Estimation Analysis</title>
      <link>/publication/simonis_2017c/</link>
      <pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_2017c/</guid>
      <description></description>
    </item>
    
    <item>
      <title>The future of ecology is collaborative, inclusive, and deconstructs biases</title>
      <link>/publication/ramirez_etal_2017/</link>
      <pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
      <guid>/publication/ramirez_etal_2017/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Academic: the website builder for Hugo</title>
      <link>/2016/04/20/academic-the-website-builder-for-hugo/</link>
      <pubDate>Wed, 20 Apr 2016 00:00:00 +0000</pubDate>
      <guid>/2016/04/20/academic-the-website-builder-for-hugo/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Create a free website with Academic using Markdown, Jupyter, or RStudio. Choose a beautiful color theme and build anything with the Page Builder - over 40 &lt;em&gt;widgets&lt;/em&gt;, &lt;em&gt;themes&lt;/em&gt;, and &lt;em&gt;language packs&lt;/em&gt; included!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;https://academic-demo.netlify.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Check out the latest &lt;strong&gt;demo&lt;/strong&gt;&lt;/a&gt; of what you&amp;rsquo;ll get in less than 10 minutes, or 
&lt;a href=&#34;https://sourcethemes.com/academic/#expo&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;view the &lt;strong&gt;showcase&lt;/strong&gt;&lt;/a&gt; of personal, project, and business sites.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;👉 
&lt;a href=&#34;#install&#34;&gt;&lt;strong&gt;Get Started&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;📚 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;View the &lt;strong&gt;documentation&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;💬 
&lt;a href=&#34;https://discourse.gohugo.io&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Ask a question&lt;/strong&gt; on the forum&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;👥 
&lt;a href=&#34;https://spectrum.chat/academic&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Chat with the &lt;strong&gt;community&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;🐦 Twitter: 
&lt;a href=&#34;https://twitter.com/source_themes&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;@source_themes&lt;/a&gt; 
&lt;a href=&#34;https://twitter.com/GeorgeCushen&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;@GeorgeCushen&lt;/a&gt; 
&lt;a href=&#34;https://twitter.com/search?q=%23MadeWithAcademic&amp;amp;src=typd&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;#MadeWithAcademic&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;💡 
&lt;a href=&#34;https://github.com/gcushen/hugo-academic/issues&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Request a &lt;strong&gt;feature&lt;/strong&gt; or report a &lt;strong&gt;bug&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;⬆️ &lt;strong&gt;Updating?&lt;/strong&gt; View the 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/update/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Update Guide&lt;/a&gt; and 
&lt;a href=&#34;https://sourcethemes.com/academic/updates/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Release Notes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;❤️ &lt;strong&gt;Support development&lt;/strong&gt; of Academic:
&lt;ul&gt;
&lt;li&gt;☕️ 
&lt;a href=&#34;https://paypal.me/cushen&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Donate a coffee&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;💵 
&lt;a href=&#34;https://www.patreon.com/cushen&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Become a backer on &lt;strong&gt;Patreon&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;🖼️ 
&lt;a href=&#34;https://www.redbubble.com/people/neutreno/works/34387919-academic&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Decorate your laptop or journal with an Academic &lt;strong&gt;sticker&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;👕 
&lt;a href=&#34;https://academic.threadless.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Wear the &lt;strong&gt;T-shirt&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;👩‍💻 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/contribute/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Contribute&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;















&lt;figure id=&#34;figure-academic-is-mobile-first-with-a-responsive-design-to-ensure-that-your-site-looks-stunning-on-every-device&#34;&gt;


  &lt;a data-fancybox=&#34;&#34; href=&#34;https://raw.githubusercontent.com/gcushen/hugo-academic/master/academic.png&#34; data-caption=&#34;Academic is mobile first with a responsive design to ensure that your site looks stunning on every device.&#34;&gt;


  &lt;img src=&#34;https://raw.githubusercontent.com/gcushen/hugo-academic/master/academic.png&#34; alt=&#34;&#34;  &gt;
&lt;/a&gt;


  
  
  &lt;figcaption&gt;
    Academic is mobile first with a responsive design to ensure that your site looks stunning on every device.
  &lt;/figcaption&gt;


&lt;/figure&gt;

&lt;p&gt;&lt;strong&gt;Key features:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Page builder&lt;/strong&gt; - Create &lt;em&gt;anything&lt;/em&gt; with 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/page-builder/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;widgets&lt;/strong&gt;&lt;/a&gt; and 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;elements&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Edit any type of content&lt;/strong&gt; - Blog posts, publications, talks, slides, projects, and more!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create content&lt;/strong&gt; in 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Markdown&lt;/strong&gt;&lt;/a&gt;, 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/jupyter/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Jupyter&lt;/strong&gt;&lt;/a&gt;, or 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-rstudio&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;RStudio&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Plugin System&lt;/strong&gt; - Fully customizable 
&lt;a href=&#34;https://sourcethemes.com/academic/themes/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;color&lt;/strong&gt; and &lt;strong&gt;font themes&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Display Code and Math&lt;/strong&gt; - Code highlighting and 
&lt;a href=&#34;https://en.wikibooks.org/wiki/LaTeX/Mathematics&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;LaTeX math&lt;/a&gt; supported&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Integrations&lt;/strong&gt; - 
&lt;a href=&#34;https://analytics.google.com&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Google Analytics&lt;/a&gt;, 
&lt;a href=&#34;https://disqus.com&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Disqus commenting&lt;/a&gt;, Maps, Contact Forms, and more!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Beautiful Site&lt;/strong&gt; - Simple and refreshing one page design&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Industry-Leading SEO&lt;/strong&gt; - Help get your website found on search engines and social media&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Media Galleries&lt;/strong&gt; - Display your images and videos with captions in a customizable gallery&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mobile Friendly&lt;/strong&gt; - Look amazing on every screen with a mobile friendly version of your site&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-language&lt;/strong&gt; - 15+ language packs including English, 中文, and Português&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-user&lt;/strong&gt; - Each author gets their own profile page&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Privacy Pack&lt;/strong&gt; - Assists with GDPR&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stand Out&lt;/strong&gt; - Bring your site to life with animation, parallax backgrounds, and scroll effects&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;One-Click Deployment&lt;/strong&gt; - No servers. No databases. Only files.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;themes&#34;&gt;Themes&lt;/h2&gt;
&lt;p&gt;Academic comes with &lt;strong&gt;automatic day (light) and night (dark) mode&lt;/strong&gt; built-in. Alternatively, visitors can  choose their preferred mode - click the sun/moon icon in the top right of the 
&lt;a href=&#34;https://academic-demo.netlify.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Demo&lt;/a&gt; to see it in action! Day/night mode can also be disabled by the site admin in &lt;code&gt;params.toml&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;https://sourcethemes.com/academic/themes/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Choose a stunning &lt;strong&gt;theme&lt;/strong&gt; and &lt;strong&gt;font&lt;/strong&gt;&lt;/a&gt; for your site. Themes are fully 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/customization/#custom-theme&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;customizable&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;ecosystem&#34;&gt;Ecosystem&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;
&lt;a href=&#34;https://github.com/sourcethemes/academic-admin&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Academic Admin&lt;/a&gt;:&lt;/strong&gt; An admin tool to import publications from BibTeX or import assets for an offline site&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;
&lt;a href=&#34;https://github.com/sourcethemes/academic-scripts&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Academic Scripts&lt;/a&gt;:&lt;/strong&gt; Scripts to help migrate content to new versions of Academic&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;install&#34;&gt;Install&lt;/h2&gt;
&lt;p&gt;You can choose from one of the following four methods to install:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-web-browser&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;one-click install using your web browser (recommended)&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-git&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;install on your computer using &lt;strong&gt;Git&lt;/strong&gt; with the Command Prompt/Terminal app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-zip&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;install on your computer by downloading the &lt;strong&gt;ZIP files&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-rstudio&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;install on your computer with &lt;strong&gt;RStudio&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Then 
&lt;a href=&#34;https://sourcethemes.com/academic/docs/get-started/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;personalize and deploy your new site&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;updating&#34;&gt;Updating&lt;/h2&gt;
&lt;p&gt;
&lt;a href=&#34;https://sourcethemes.com/academic/docs/update/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;View the Update Guide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Feel free to &lt;em&gt;star&lt;/em&gt; the project on 
&lt;a href=&#34;https://github.com/gcushen/hugo-academic/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Github&lt;/a&gt; to help keep track of 
&lt;a href=&#34;https://sourcethemes.com/academic/updates&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;updates&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;license&#34;&gt;License&lt;/h2&gt;
&lt;p&gt;Copyright 2016-present 
&lt;a href=&#34;https://georgecushen.com&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;George Cushen&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Released under the 
&lt;a href=&#34;https://github.com/gcushen/hugo-academic/blob/master/LICENSE.md&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;MIT&lt;/a&gt; license.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Clifton Court Forebay Predator Study: Bioenergetics Feasibility and Sensitivity Analysis</title>
      <link>/publication/stroud_and_simonis_2016/</link>
      <pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
      <guid>/publication/stroud_and_simonis_2016/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Estimating Loss of Chinook Salmon and Natural-Origin steelhead at the Central Valley Project and State Water Project</title>
      <link>/publication/simonis_etal_2016/</link>
      <pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
      <guid>/publication/simonis_etal_2016/</guid>
      <description>&lt;p&gt;See the 
&lt;a href=&#34;/code/loss/&#34;&gt;software page&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Juvenile steelhead and chinook production and smolt survival. 2016 Annual Progress Report for the Umatilla Basin Natural Production Monitoring and Evaluation Project</title>
      <link>/publication/caldwell_etal_2016/</link>
      <pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
      <guid>/publication/caldwell_etal_2016/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Red Wolf (Canis rufus) Population Viability Analysis</title>
      <link>/publication/faust_etal_2016/</link>
      <pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
      <guid>/publication/faust_etal_2016/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Hello R Markdown</title>
      <link>/2015/07/23/hello-r-markdown/</link>
      <pubDate>Thu, 23 Jul 2015 21:13:14 -0500</pubDate>
      <guid>/2015/07/23/hello-r-markdown/</guid>
      <description>


&lt;div id=&#34;r-markdown&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;R Markdown&lt;/h1&gt;
&lt;p&gt;This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see &lt;a href=&#34;http://rmarkdown.rstudio.com&#34; class=&#34;uri&#34;&gt;http://rmarkdown.rstudio.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can embed an R code chunk like this:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;summary(cars)
##      speed           dist       
##  Min.   : 4.0   Min.   :  2.00  
##  1st Qu.:12.0   1st Qu.: 26.00  
##  Median :15.0   Median : 36.00  
##  Mean   :15.4   Mean   : 42.98  
##  3rd Qu.:19.0   3rd Qu.: 56.00  
##  Max.   :25.0   Max.   :120.00
fit &amp;lt;- lm(dist ~ speed, data = cars)
fit
## 
## Call:
## lm(formula = dist ~ speed, data = cars)
## 
## Coefficients:
## (Intercept)        speed  
##     -17.579        3.932&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div id=&#34;including-plots&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Including Plots&lt;/h1&gt;
&lt;p&gt;You can also embed plots. See Figure &lt;a href=&#34;#fig:pie&#34;&gt;1&lt;/a&gt; for example:&lt;/p&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;par(mar = c(0, 1, 0, 1))
pie(
  c(280, 60, 20),
  c(&amp;#39;Sky&amp;#39;, &amp;#39;Sunny side of pyramid&amp;#39;, &amp;#39;Shady side of pyramid&amp;#39;),
  col = c(&amp;#39;#0292D8&amp;#39;, &amp;#39;#F7EA39&amp;#39;, &amp;#39;#C4B632&amp;#39;),
  init.angle = -50, border = NA
)&lt;/code&gt;&lt;/pre&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span style=&#34;display:block;&#34; id=&#34;fig:pie&#34;&gt;&lt;/span&gt;
&lt;img src=&#34;/post/2015-07-23-r-rmarkdown_files/figure-html/pie-1.png&#34; alt=&#34;A fancy pie chart.&#34; width=&#34;672&#34; /&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 1: A fancy pie chart.
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>/contact/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/contact/</guid>
      <description></description>
    </item>
    
    <item>
      <title></title>
      <link>/pubs/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/pubs/</guid>
      <description></description>
    </item>
    
    <item>
      <title></title>
      <link>/research/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/research/</guid>
      <description></description>
    </item>
    
    <item>
      <title></title>
      <link>/software/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/software/</guid>
      <description></description>
    </item>
    
    <item>
      <title>accessor</title>
      <link>/code/accessor/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/accessor/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://github.com/dapperstats.com/accessor&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;accessor&lt;/code&gt;&lt;/a&gt; allows access Access&lt;sup&gt;®&lt;/sup&gt; databases without access to Access&lt;sup&gt;®&lt;/sup&gt;&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Chemical Weapons Ecotoxicology</title>
      <link>/project/chemical_weapons/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/project/chemical_weapons/</guid>
      <description>&lt;p&gt;We are studying the use of chemical weapons by law enforcement and are particularly interested in their impacts on the aquatic environment.&lt;/p&gt;
&lt;p&gt;This work is done in collaboration with members of the 
&lt;a href=&#34;https://chemicalweaponsresearch.com&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Chemical Weapons Research Consortium&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Compositional Time Series</title>
      <link>/project/compositional_timeseries/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/project/compositional_timeseries/</guid>
      <description>&lt;p&gt;We are developing statitistical and computational methods to analyze high-dimensional time series data, motivated in particular by ecological communities.&lt;/p&gt;
&lt;p&gt;Much of this work is done in collaboration with the 
&lt;a href=&#34;https://www.weecology.org&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Weecology Lab&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Ecological Forecasting</title>
      <link>/project/forecasting/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/project/forecasting/</guid>
      <description>&lt;p&gt;We are applying cutting-edge computational tools to automate forecasting of ecological populations in realtime.
In association, we are translating forecasting science from disparate domains to ecological settings in order to best leverage contemporary methods.&lt;/p&gt;
&lt;p&gt;Much of this work is done in collaboration with the 
&lt;a href=&#34;https://www.weecology.org&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Weecology Lab&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Estimators for Ecological Processes in Applied Settings</title>
      <link>/project/estimators/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/project/estimators/</guid>
      <description>&lt;p&gt;We develop computational and statistical tools for estimation of ecological processes (mortality, spawning, recruitment) from data collected by on-the-ground managers.&lt;/p&gt;
&lt;p&gt;This work is done in collaboration with USGS, Bat Conservation International, Cramer Fish Sciences.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>gendrendr</title>
      <link>/code/gendrendr/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/gendrendr/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://dapperstats.github.io/gendrendr/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;gendrendr&lt;/code&gt;&lt;/a&gt; contains a simple set of functions designed to highlight the inaccuracy and violence of assigning genders to others.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>GenEst</title>
      <link>/code/genest/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/genest/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://github.com/dapperstats.com/salvage&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;GenEst&lt;/code&gt;&lt;/a&gt; is a tool for estimating mortalities from efficiency, persistence, and carcass data.&lt;/p&gt;
&lt;p&gt;A 
&lt;a href=&#34;https://west-inc.shinyapps.io/GenEst/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;live instance of the web application&lt;/a&gt; is available for general usage.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;http://orcid.org/0000-0002-4815-6309&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Daniel Dalthorp&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;

&lt;a href=&#34;https://stat.oregonstate.edu/content/madsen-lisa&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Lisa Madsen&lt;/a&gt;,

&lt;a href=&#34;http://orcid.org/0000-0003-4687-6625&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Manuela Huso&lt;/a&gt;,

&lt;a href=&#34;https://www.west-inc.com/staff/paul-rabie/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Paul Rabie&lt;/a&gt;,

&lt;a href=&#34;http://orcid.org/0000-0003-4345-366X&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Jeffrey Mintz&lt;/a&gt;,

&lt;a href=&#34;http://www2.stat.duke.edu/~rlw/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Robert Wolpert&lt;/a&gt;,

&lt;a href=&#34;https://www.west-inc.com/staff/jared-studyvin/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Jared Studyvin&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-9081-3563&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Franzi Korner-Nievergelt&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>LDATS</title>
      <link>/code/ldats/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/ldats/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://weecology.github.io/LDATS/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;LDATS&lt;/code&gt;&lt;/a&gt; is an R package for analyzing time series of high-dimensional data using a two-stage approach comprised of Latent Dirichlet Allocation (LDA) and Bayesian time series (TS) analyses.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-5635-2502&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Erica M. Christensen&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0003-3332-9307&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;David J. Harris&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0003-0803-4734&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Renata M. Diaz&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-8630-1458&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hao Ye&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-6728-7745&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ethan White&lt;/a&gt;,
and

&lt;a href=&#34;https://orcid.org/0000-0002-6026-8530&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;S. K. Morgan Ernest&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Loss &amp; Salvage of Endangered Fish</title>
      <link>/project/salvage/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/project/salvage/</guid>
      <description>&lt;p&gt;We are keenly interested in the dynamics of endangered fish in the California Delta, which can be studied through a variety of data sources.&lt;/p&gt;
&lt;p&gt;In particular, we have developed a continuous pipeline to automatically analyze newly collected data and update a 
&lt;a href=&#34;https://salvage.fish&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;live website&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Loss Calculator</title>
      <link>/code/loss/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/loss/</guid>
      <description>&lt;p&gt;Estimating Loss of Chinook Salmon and Natural-Origin Steelhead at the Central Valley Project and State Water Project.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;

&lt;a href=&#34;http://orcid.org/0000-0003-4330-1236&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Steven Zeug&lt;/a&gt;, and

&lt;a href=&#34;http://orcid.org/0000-0001-6736-275X&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Kai Ross&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>MATSS</title>
      <link>/code/matss/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/matss/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://weecology.github.io/MATSS/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;MATSS&lt;/code&gt;&lt;/a&gt; is an R package for conducting Macroecological Analyses of Time Series Structure.
We designed it to help researchers quickly get started in analyses of ecological time series, and to reinforce and spread good practices in computational analyses.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0002-8630-1458&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hao Ye&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-3629-7235&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ellen Bledsoe&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0003-0803-4734&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Renata Diaz&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-6026-8530&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;S. K. Morgan Ernest&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper Simonis&lt;/strong&gt;&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-6728-7745&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ethan White&lt;/a&gt;,
and

&lt;a href=&#34;https://orcid.org/0000-0001-6969-1848&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Glenda Yenni&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>portalcasting</title>
      <link>/code/portalcasting/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/portalcasting/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://weecology.github.io/portalcasting/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;portalcasting&lt;/code&gt;&lt;/a&gt; provides support for 
&lt;a href=&#34;https://github.com/weecology/portalPredictions&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;automated forecasting&lt;/a&gt; of 
&lt;a href=&#34;https://portal.weecology.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;rodent populations&lt;/a&gt;&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-6969-1848&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Glenda Yenni&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-3629-7235&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ellen Bledsoe&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-5635-2502&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Erica M. Christensen&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-8630-1458&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hao Ye&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-6728-7745&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ethan White&lt;/a&gt;,
and

&lt;a href=&#34;https://orcid.org/0000-0002-6026-8530&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;S. K. Morgan Ernest&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>portalr</title>
      <link>/code/portalr/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/portalr/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://weecology.github.io/portalr/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;portalr&lt;/code&gt;&lt;/a&gt; provides collection of basic functions to summarize the  
&lt;a href=&#34;https://portal.weecology.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Portal project data&lt;/a&gt; on rodents, plants, ants, and weather at our long-term field site in the Chihuahuan Desert.
The data begin in 1977 and are continuously updated today.
There are functions to summarize rodent abundance, biomass, or energy and by site, plot, or treatment type.
There are functions to summarize the weather data collected from our automated weather stations and plant data that is collected each summer and fall.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-6969-1848&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Glenda Yenni&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-8630-1458&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hao Ye&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-5635-2502&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Erica M. Christensen&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-3629-7235&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ellen Bledsoe&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0003-0803-4734&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Renata M. Diaz&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0002-6178-6903&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Shawn D. Taylor&lt;/a&gt;,

&lt;a href=&#34;https://orcid.org/0000-0001-6728-7745&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ethan P. White&lt;/a&gt;,
and

&lt;a href=&#34;https://orcid.org/0000-0002-6026-8530&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;S. K. Morgan Ernest&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>salvage</title>
      <link>/code/salvage/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/code/salvage/</guid>
      <description>&lt;p&gt;
&lt;a href=&#34;https://github.com/dapperstats.com/salvage&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;salvage&lt;/code&gt;&lt;/a&gt; provides tools for smooth interactions with the 
&lt;a href=&#34;https://en.wikipedia.org/wiki/Sacramento%E2%80%93San_Joaquin_River_Delta&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;California Delta&lt;/a&gt; 
&lt;a href=&#34;https://wildlife.ca.gov/Conservation/Delta/Salvage-Monitoring&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;fish salvage monitoring database&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Each day, the 
&lt;a href=&#34;https://github.com/dapperstats/salvage/blob/master/data&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;/data&lt;/code&gt; directory&lt;/a&gt; is populated with &lt;code&gt;.csv&lt;/code&gt;s from an up-to-date &amp;ldquo;current&amp;rdquo; (1993 - Present) salvage database file (&lt;code&gt;Salvage_data_FTP.accdb&lt;/code&gt;).
The &lt;code&gt;.csv&lt;/code&gt; files are then used to update the 
&lt;a href=&#34;https://salvage.fish&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;data presentation website (salvage.fish)&lt;/a&gt;.&lt;/p&gt;
&lt;h4 id=&#34;authors&#34;&gt;Authors&lt;/h4&gt;
&lt;p&gt;
&lt;a href=&#34;https://orcid.org/0000-0001-9798-0460&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;strong&gt;Juniper L. Simonis&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Team</title>
      <link>/team/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/team/</guid>
      <description></description>
    </item>
    
  </channel>
</rss>
