Skip to content

Commit

Permalink
Deployed 84f723d with MkDocs version: 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Sep 8, 2023
1 parent 2faa0c5 commit 163e750
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.
19 changes: 10 additions & 9 deletions vlmd/extract/exceldata/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -942,20 +942,21 @@ <h3 id="to-extract-multiple-sheets-as-one-data-dictionary">To extract multiple s
<div class="highlight"><pre><span></span><code><span class="kn">from</span> <span class="nn">healdata_utils</span> <span class="kn">import</span> <span class="n">convert_to_vlmd</span>

<span class="n">convert_to_vlmd</span><span class="p">(</span>
<span class="n">filepath</span><span class="o">=</span><span class="s2">&quot;myexcelfile.xlsx&quot;</span><span class="p">,</span>
<span class="n">input_filepath</span><span class="o">=</span><span class="s2">&quot;myexcelfile.xlsx&quot;</span><span class="p">,</span>
<span class="n">inputtype</span><span class="o">=</span><span class="s2">&quot;excel-data&quot;</span><span class="p">,</span>
<span class="n">multiple_data_dicts</span><span class="o">=</span><span class="kc">False</span>
<span class="p">)</span>
</code></pre></div>
<h3 id="to-extract-a-subset-of-sheets-as-one-data-dictionary">To extract a subset of sheets as one data dictionary<a class="headerlink" href="#to-extract-a-subset-of-sheets-as-one-data-dictionary" title="Permanent link">&para;</a></h3>
<p>```python</p>
<p>from healdata_utils import convert_to_vlmd</p>
<p>convert_to_vlmd(
filepath="myexcelfile.xlsx",
inputtype="excel-data",
multiple_data_dicts=False,
sheet_name=["mysheet1","mysheet2"]
)</p>
<div class="highlight"><pre><span></span><code><span class="kn">from</span> <span class="nn">healdata_utils</span> <span class="kn">import</span> <span class="n">convert_to_vlmd</span>

<span class="n">convert_to_vlmd</span><span class="p">(</span>
<span class="n">input_filepath</span><span class="o">=</span><span class="s2">&quot;myexcelfile.xlsx&quot;</span><span class="p">,</span>
<span class="n">inputtype</span><span class="o">=</span><span class="s2">&quot;excel-data&quot;</span><span class="p">,</span>
<span class="n">multiple_data_dicts</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span>
<span class="n">sheet_name</span><span class="o">=</span><span class="p">[</span><span class="s2">&quot;mysheet1&quot;</span><span class="p">,</span><span class="s2">&quot;mysheet2&quot;</span><span class="p">]</span>
<span class="p">)</span>
</code></pre></div>
</div>
</div>
</div>
Expand Down

0 comments on commit 163e750

Please sign in to comment.