<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>Akhilesh</title>
<link>https://akkikek.xyz/</link>
<atom:link href="https://akkikek.xyz/index.xml" rel="self" type="application/rss+xml"/>
<description></description>
<generator>quarto-1.9.38</generator>
<lastBuildDate>Thu, 30 Jul 2020 00:00:00 GMT</lastBuildDate>
<item>
  <title>Understanding the spread of Extinct and Endangered languages across India</title>
  <dc:creator>Akhilesh </dc:creator>
  <link>https://akkikek.xyz/posts/low-resource-langs-india/2020-07-30-endangered-languages-of-india.html</link>
  <description><![CDATA[ 





<p>Visualizing the spread of low resource languages across India.</p>
<section id="data-description" class="level2">
<h2 class="anchored" data-anchor-id="data-description">Data Description</h2>
<p>The dataset of extinct and endangered languages around the world is created by The Guardian and is available <a href="https://www.kaggle.com/the-guardian/extinct-languages">here</a>.</p>
<p>Variables: The name of language, longitude, latitude, degree of endangerment and the number of speakers.</p>
<section id="data-visualisation" class="level3">
<h3 class="anchored" data-anchor-id="data-visualisation">Data Visualisation</h3>
<p>Languages by latitude/longitude and Population are plotted.</p>
<p>The interactive visualisation of Languages by Latitude/longitude inform us, where all the extinct and endangered languages are located across India.</p>
<p>Similarly, Languages by number of speakers is plotted.</p>
<div class="cell" data-execution_count="1">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#collapse-hide</span></span>
<span id="cb1-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> np</span>
<span id="cb1-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pandas <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pd</span>
<span id="cb1-4">pd.options.mode.chained_assignment <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span></span>
<span id="cb1-5"></span>
<span id="cb1-6"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> IPython.display <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> HTML</span>
<span id="cb1-7"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> chart_studio <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly</span>
<span id="cb1-8"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.graph_objs <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> go</span>
<span id="cb1-9"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> plotly <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> tools</span>
<span id="cb1-10"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> plotly.offline <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> iplot, init_notebook_mode</span>
<span id="cb1-11">init_notebook_mode()</span>
<span id="cb1-12"></span>
<span id="cb1-13">language_data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pd.read_csv(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'data.csv'</span>, usecols<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">13</span>])</span>
<span id="cb1-14">language_data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_data.rename(</span>
<span id="cb1-15">    columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Name in English'</span>:<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'language'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Country codes alpha 3'</span>:<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'locations'</span>,</span>
<span id="cb1-16">             <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Degree of endangerment'</span>:<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'risk'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Number of speakers'</span>:<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>})</span>
<span id="cb1-17">language_data.columns <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_data.columns.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>.lower()</span>
<span id="cb1-18">language_data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'risk'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'risk'</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>.title()</span>
<span id="cb1-19">language_data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>].fillna(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb1-20"></span>
<span id="cb1-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># endangered or extinct languages in India</span></span>
<span id="cb1-22">language_ind <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_data[language_data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'locations'</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>.contains(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'IND'</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>]</span>
<span id="cb1-23"></span>
<span id="cb1-24">language_ind[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'risk'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'risk'</span>].replace(</span>
<span id="cb1-25">    [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Vulnerable'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Definitely Endangered'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Severely Endangered'</span>,</span>
<span id="cb1-26">     <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Critically Endangered'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Extinct'</span>], [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>])</span>
<span id="cb1-27"></span>
<span id="cb1-28">language_ind <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'language'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'risk'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'latitude'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'longitude'</span>]]</span></code></pre></div></div>
</details>
</div>
</section>
<section id="languages-by-latitudelongitude" class="level3">
<h3 class="anchored" data-anchor-id="languages-by-latitudelongitude">Languages by Latitude/Longitude</h3>
<div class="cell" data-execution_count="2">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#collapse-hide</span></span>
<span id="cb2-2">labels <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Isolated'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Threatened'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Endangered'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Abandoned'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Extinct'</span>]</span>
<span id="cb2-3">colors <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(0, 157, 220)'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(128, 206, 237)'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(255, 182, 128)'</span>,</span>
<span id="cb2-4">          <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(255, 115, 13)'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(242, 23, 13)'</span>]</span>
<span id="cb2-5"></span>
<span id="cb2-6">traces <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb2-7"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> i <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>):</span>
<span id="cb2-8">    traces.append(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb2-9">        <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'scattergeo'</span>,</span>
<span id="cb2-10">        lon <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'longitude'</span>],</span>
<span id="cb2-11">        lat <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'latitude'</span>],</span>
<span id="cb2-12">        text <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'language'</span>],</span>
<span id="cb2-13">        mode <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'markers'</span>,</span>
<span id="cb2-14">        name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> labels[i<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>],</span>
<span id="cb2-15">        marker <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>( </span>
<span id="cb2-16">            size <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>,</span>
<span id="cb2-17">            opacity <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.85</span>,</span>
<span id="cb2-18">            color <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> colors[i<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>],</span>
<span id="cb2-19">            line <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(color <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(255, 255, 255)'</span>, width <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb2-20">        )</span>
<span id="cb2-21">    ))</span>
<span id="cb2-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># print(traces)</span></span>
<span id="cb2-23">layout <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb2-24">         title <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Languages by Latitude/Longitude in India (2016)&lt;br&gt;'</span></span>
<span id="cb2-25">                 <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;sub&gt;Click Legend to Display or Hide Categories&lt;/sub&gt;'</span>,</span>
<span id="cb2-26">         showlegend <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb2-27">         legend <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb2-28">             x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.85</span>, y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.4</span></span>
<span id="cb2-29">         ),</span>
<span id="cb2-30">        geo <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb2-31">                 scope <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'asia'</span>,</span>
<span id="cb2-32">                 showland <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb2-33">                 landcolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(250, 250, 250)'</span>,</span>
<span id="cb2-34">                 subunitwidth <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb2-35">                 subunitcolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(217, 217, 217)'</span>,</span>
<span id="cb2-36">                 countrywidth <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb2-37">                 countrycolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(217, 217, 217)'</span>,</span>
<span id="cb2-38">                 showlakes <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb2-39">                 lakecolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(255, 255, 255)'</span>)</span>
<span id="cb2-40">        )</span>
<span id="cb2-41"></span>
<span id="cb2-42"></span>
<span id="cb2-43">figure <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> traces, layout <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> layout)</span></code></pre></div></div>
</details>
</div>
<div class="cell" data-execution_count="3">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#collapse-hide</span></span>
<span id="cb3-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.io <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pio</span>
<span id="cb3-3"></span>
<span id="cb3-4">pio.show(figure)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="40b05a75-5919-4b6a-b4bc-7862b3f822ac" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("40b05a75-5919-4b6a-b4bc-7862b3f822ac")) {                    Plotly.newPlot(                        "40b05a75-5919-4b6a-b4bc-7862b3f822ac",                        [{"lat":[19.5804,29.4778,22.1467,12.0178,24.7667,27.7365,19.5908,25.691,26.7554,22.3297,24.7451,23.7752,22.9988,26.2934,21.637,30.0976,19.1244,26.9367,26.4361,11.4369,21.8003,20.3034,27.1275,24.4521,28.3527,26.1603,27.5277,25.9284,27.739,25.0358,25.7553,26.7799,24.7368,34.0617,25.9777,24.7218,25.9629,25.8691,26.6032,25.5027,24.297,26.2934,24.9661,25.958,26.8279,24.577,24.1968,26.9759,21.8003,25.6811,18.7086,28.2632,27.4059,26.0518,25.185,27.5228,28.1688,22.4922,25.2794,25.5027,27.1618,28.038,25.6019,22.1263,24.1517,24.6769,28.0331,25.2198,32.6578,28.2463,24.1467,25.6712,27.8827,28.12,30.7229,28.1155,28.8735,27.1935,35.0659,33.8886,34.3706,32.2871],"lon":[80.4418,79.8486,85.2758,75.7067,93.8946,85.6858,83.9575,91.8676,92.8674,86.0449,85.3124,91.6918,92.9223,93.2299,86.4404,79.1235,83.2104,95.1745,94.6472,76.5032,85.4956,80.2441,91.9335,93.2354,95.2294,94.3725,93.0981,90.9777,86.839,94.4824,94.1308,94.9493,92.9003,77.5909,94.5922,93.6584,94.9713,94.7131,94.9603,94.2681,92.4499,94.9493,93.5375,94.2462,95.3623,93.3178,93.3563,95.4656,86.8139,94.367,83.5839,95.0537,96.427,95.1031,93.9715,93.8177,94.7433,84.1552,93.6694,93.5595,95.7952,94.2022,93.8891,87.0776,93.9385,94.3835,93.0651,94.1583,77.5415,95.3668,92.3071,94.779,96.5093,95.88,79.7387,96.2896,94.3807,92.351,76.1901,76.3,76.0144,78.2652],"marker":{"color":"rgb(0, 157, 220)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":12},"mode":"markers","name":"Isolated","text":["Gondi","Kumaoni","Kurux (India)","Tulu","Meithei","Tamang","Kui","Khasi","Bodo","Mundari","Angika","Kokborok","Mizo","Karbi","Ho","Garhwali","Sora","Konyak","Ao","Irula","Kharia","Korku","Tshangla","Thado","Adi","Lhota","Nyishi","Rabha","Sherpa","Tangkhul","Angami","Phom","Dimasa","Ladakhi","Simi","Kabui","Yimchungru","Chokri","Sangtam","Mao","Bishnupriya Manipuri Creole","Chang","Nruanghmei","Rengma","Cuona Menba","Hmar","Paite","Wancho","Bhumji","Kheza","Gutob","Minyong","Tangsa","Khiamngan","Maram","Apatani","Galo","Korwa","Liangmai","Zeme","Nocte","Tagin","Mzieme","Koda","Anal","Maring","Bangni","Khoirao","Manchad","Padam","Hrangkhol","Pochuri","Khampti","Taruang","Rongpo","Miju","Bokar","Sherdukpen","Balti","Padri","Purik","Spiti"],"type":"scattergeo"},{"lat":[32.4356,31.4099,26.9612,31.2738,16.6151,18.9478,27.096,23.7853,31.4403,11.6952,11.3642,32.9072,20.5093,18.2763,30.4859,33.5413,31.541,33.1835,25.2844,25.7603,27.1153,27.1911,21.0742,25.7801,23.5237,25.6514,24.1968,21.4735,22.1874,27.7078,28.6496,28.664,22.4719,27.839,18.667,24.0414,27.3351,27.5569,21.8411,27.1666,32.7503,32.4912,24.4171,34.6478,28.9889,31.7748,28.488,32.519,30.0037,30.0595,32.0406,29.0105,27.3327,27.3937,27.2546,28.1834,28.4735,34.55,33.3947,30.645,32.0267,27.1667,34.0833],"lon":[76.1242,76.9921,94.0539,77.1295,81.6284,83.5839,87.7356,85.4736,77.1487,75.9375,76.5266,76.5307,78.1787,82.9385,78.0908,76.333,78.3764,76.5747,93.2189,90.3955,88.4687,94.1528,85.6164,92.5927,92.9003,93.2409,93.587,74.0258,92.6477,94.0374,95.8419,94.0347,84.9023,92.8784,83.0346,93.6639,92.5735,96.7456,87.2973,92.6312,76.2451,76.8383,94.378,76.4978,94.4439,78.4753,95.2954,77.6733,80.5641,80.7824,77.1075,94.7653,92.384,91.8965,92.5323,95.2651,96.4764,73.8833,76.1352,78.3627,77.893,92.6312,76.85],"marker":{"color":"rgb(128, 206, 237)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":12},"mode":"markers","name":"Threatened","text":["Kangdi","Mandeali","Mising","Mahasui","Kurru","Kuvi","Limbu","Malto","Kului","Kodagu","Badaga","Chambeali","Kolami","Konda","Jaunsari","Bhadravahi","Kinnauri","Churahi","Kachari","Koch","Lepcha","Deori","Juang","Tiwa","Mara","Biete","Gangte","Nahali","Bawm","Hill Miri","Idu","Motuo Menba","Asur","Sulung","Gorum","Kom","Miji","Singpho","Turi","Aka","Bunan","Bharmauri","Moyon","Brokshat","Bori","Jangshung","Milang","Tinan","Darma","Byangsi","Kanashi","Khamba","Lishpa","Dakpa","Khowa","Pasi","Zaiwa","Kundal Shahi","Bhalesi","Jad","Khasali","Koro","Zangskari"],"type":"scattergeo"},{"lat":[18.2293,19.1659,26.6523,27.5033,26.5688,25.2844],"lon":[82.727,82.6391,94.2901,95.2185,89.1979,91.1755],"marker":{"color":"rgb(255, 182, 128)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":12},"mode":"markers","name":"Endangered","text":["Geta?","Remo","Aiton","Tai Phake","Mech","A'tong"],"type":"scattergeo"},{"lat":[18.5629,30.9823,18.3858,11.6952,33.4589,11.4369,29.8692,24.2569,8.0932,19.8287,8.2549,31.194,6.85,24.4971,21.7594,11.4154,7.915,20.5402,7.9504,19.0621,24.2319,11.3184,26.6867,24.297,24.3521,7.3134,28.3914,28.4638,11.0112,31.0011,25.2844,7.0245,26.8485,26.9024,29.1473,10.639,11.5446,12.6028,12.2326,11.6952,24.4671,20.1384],"lon":[82.8039,77.1569,82.7819,75.6738,76.9152,76.3549,79.0686,94.0759,93.4963,78.2281,93.1022,77.0471,93.8726,93.6145,85.935,76.8576,93.3837,76.0913,93.576,83.4851,93.7463,76.8273,89.5056,93.4497,93.5925,93.6968,93.3837,93.3041,34.2333,77.3107,90.4614,93.8232,94.5648,94.757,94.5538,92.4938,92.2576,92.752,92.9031,76.4648,94.1473,84.0289],"marker":{"color":"rgb(255, 115, 13)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":12},"mode":"markers","name":"Abandoned","text":["Parji","Sirmaudi","Gadaba","Koraga","Pangvali","Kuruba","Bangani","Lamgang","Muot","Naiki","Pu","Baghati","Takahanyilang","Aimol","Birhor","Kota","Luro","Nihali","Sanenyo","Pengo","Koireng","Toda","Toto","Tarao","Purum","Lamongse","Mra","Na","Aka","Handuri","Ruga","Shompen","Tai Nora","Tai Rong","Tangam","Onge","Sentilese","Jarawa","Great andamanese","Bellari","Langrong","Manda"],"type":"scattergeo"},{"lat":[26.5393,24.8415,24.976,30.0358,24.6445,29.9333],"lon":[92.5378,94.0539,94.2407,80.1342,94.0567,80.0326],"marker":{"color":"rgb(242, 23, 13)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":12},"mode":"markers","name":"Extinct","text":["Ahom","Andro","Chairel","Rangkas","Sengmai","Tolcha"],"type":"scattergeo"}],                        {"geo":{"countrycolor":"rgb(217, 217, 217)","countrywidth":1,"lakecolor":"rgb(255, 255, 255)","landcolor":"rgb(250, 250, 250)","scope":"asia","showlakes":true,"showland":true,"subunitcolor":"rgb(217, 217, 217)","subunitwidth":1},"legend":{"x":0.85,"y":0.4},"showlegend":true,"title":{"text":"Languages by Latitude/Longitude in India (2016)<br><sub>Click Legend to Display or Hide Categories</sub>"},"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('40b05a75-5919-4b6a-b4bc-7862b3f822ac');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</section>
<section id="languages-by-population" class="level3">
<h3 class="anchored" data-anchor-id="languages-by-population">Languages by Population</h3>
<div class="cell" data-execution_count="4">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#collapse-hide</span></span>
<span id="cb4-2">language_ind <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind.sort_values(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>, ascending <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>)</span>
<span id="cb4-3">language_ind[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'text'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'language'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;br&gt;'</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Population '</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> language_ind[</span>
<span id="cb4-4">                                                                 <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>].astype(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>)</span>
<span id="cb4-5"></span>
<span id="cb4-6">new_traces <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb4-7"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> i <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>):</span>
<span id="cb4-8">    new_traces.append(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb4-9">        <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'scattergeo'</span>,</span>
<span id="cb4-10">        lon <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'longitude'</span>],</span>
<span id="cb4-11">        lat <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'latitude'</span>],</span>
<span id="cb4-12">        text <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'text'</span>],</span>
<span id="cb4-13">        mode <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'markers'</span>,</span>
<span id="cb4-14">        name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> labels[i<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>],</span>
<span id="cb4-15">        hoverinfo <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'text+name'</span>,</span>
<span id="cb4-16">        marker <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>( </span>
<span id="cb4-17">            size <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (language_ind[language_ind.risk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> i][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'population'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.18</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>,</span>
<span id="cb4-18">            opacity <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.85</span>,</span>
<span id="cb4-19">            color <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> colors[i<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>],</span>
<span id="cb4-20">            line <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(color <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(255, 255, 255)'</span>, width <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb4-21">        )</span>
<span id="cb4-22">    ))</span>
<span id="cb4-23"></span>
<span id="cb4-24">new_layout <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb4-25">         title <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Languages by Population in India (2016)&lt;br&gt;'</span></span>
<span id="cb4-26">                 <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;sub&gt;Click Legend to Display or Hide Categories&lt;/sub&gt;'</span>,</span>
<span id="cb4-27">         showlegend <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb4-28">         legend <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb4-29">             x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.85</span>, y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.4</span></span>
<span id="cb4-30">         ),</span>
<span id="cb4-31">         geo <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(</span>
<span id="cb4-32">             scope <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'asia'</span>,</span>
<span id="cb4-33">             showland <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb4-34">             landcolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(250, 250, 250)'</span>,</span>
<span id="cb4-35">             subunitwidth <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb4-36">             subunitcolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(217, 217, 217)'</span>,</span>
<span id="cb4-37">             countrywidth <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb4-38">             countrycolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(217, 217, 217)'</span>,</span>
<span id="cb4-39">             showlakes <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb4-40">             lakecolor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'rgb(255, 255, 255)'</span>)</span>
<span id="cb4-41">        )</span>
<span id="cb4-42"></span>
<span id="cb4-43">new_figure <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> new_traces, layout <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> new_layout)</span></code></pre></div></div>
</details>
</div>
<div class="cell" data-execution_count="5">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#collapse-hide</span></span>
<span id="cb5-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.io <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pio</span>
<span id="cb5-3"></span>
<span id="cb5-4">pio.show(new_figure)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="03cedbcd-56b3-4045-8ccc-946ce08dff89" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("03cedbcd-56b3-4045-8ccc-946ce08dff89")) {                    Plotly.newPlot(                        "03cedbcd-56b3-4045-8ccc-946ce08dff89",                        [{"hoverinfo":"text+name","lat":[19.5804,29.4778,22.1467,12.0178,24.7667,27.7365,19.5908,25.691,26.7554,22.3297,24.7451,23.7752,22.9988,26.2934,21.637,30.0976,19.1244,26.9367,26.4361,11.4369,21.8003,20.3034,27.1275,24.4521,28.3527,26.1603,27.5277,25.9284,27.739,25.0358,25.7553,26.7799,24.7368,34.0617,25.9777,24.7218,25.9629,25.8691,26.6032,25.5027,24.297,26.2934,24.9661,25.958,26.8279,24.577,24.1968,26.9759,21.8003,25.6811,18.7086,28.2632,27.4059,26.0518,25.185,27.5228,28.1688,22.4922,25.2794,25.5027,27.1618,28.038,25.6019,22.1263,24.1517,24.6769,28.0331,25.2198,32.6578,28.2463,24.1467,25.6712,27.8827,28.12,30.7229,28.1155,28.8735,27.1935,32.2871,34.3706,33.8886,35.0659],"lon":[80.4418,79.8486,85.2758,75.7067,93.8946,85.6858,83.9575,91.8676,92.8674,86.0449,85.3124,91.6918,92.9223,93.2299,86.4404,79.1235,83.2104,95.1745,94.6472,76.5032,85.4956,80.2441,91.9335,93.2354,95.2294,94.3725,93.0981,90.9777,86.839,94.4824,94.1308,94.9493,92.9003,77.5909,94.5922,93.6584,94.9713,94.7131,94.9603,94.2681,92.4499,94.9493,93.5375,94.2462,95.3623,93.3178,93.3563,95.4656,86.8139,94.367,83.5839,95.0537,96.427,95.1031,93.9715,93.8177,94.7433,84.1552,93.6694,93.5595,95.7952,94.2022,93.8891,87.0776,93.9385,94.3835,93.0651,94.1583,77.5415,95.3668,92.3071,94.779,96.5093,95.88,79.7387,96.2896,94.3807,92.351,78.2652,76.0144,76.3,76.1901],"marker":{"color":"rgb(0, 157, 220)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":[86.3366119636309,81.7493697607026,79.79296984752025,79.5558497883654,75.09224963896372,74.50487376905853,71.00868409177278,70.94967444103001,70.78072209599058,68.4955539019062,68.3450772718504,67.56295369990522,64.32405566935107,61.70726653665335,61.16771318206442,57.34562049354562,56.205752238412806,56.12454951433301,55.91916803177302,53.99294799878567,53.99294799878567,53.99294799878567,53.64780667247976,53.547310893909696,52.43635754126245,52.43635754126245,52.43635754126245,51.268215147156255,50.87333451319944,50.76491962186188,50.10201010496685,49.46919075562823,48.641974131219115,48.080178209994216,47.99743212356851,47.22177659159536,46.94981756065948,46.187286954763465,46.187286954763465,45.88592795198909,45.023806106159455,43.73035624923075,43.60255134767869,43.60255134767869,42.06950621819868,42.06950621819868,42.06950621819868,41.91680189947927,41.60356320224044,40.59328998493983,40.41327100016347,40.41327100016347,40.41327100016347,40.04187033323687,39.85012366604735,39.453517755716206,39.453517755716206,39.453517755716206,39.24820096595052,39.24820096595052,39.03787134061415,38.37387724591943,38.14043004845633,37.13501287306758,36.58184957787556,36.29032739013658,35.673075924211425,35.673075924211425,35.673075924211425,35.673075924211425,35.34524633807604,34.64468799613955,33.0116374536036,31.0996196942555,30.249431640032313,29.299241779728693,27.795947594343147,25.354738138977616,0.0,0.0,0.0,0.0]},"mode":"markers","name":"Isolated","text":["Gondi<br>Population 2713790.0","Kumaoni<br>Population 2003783.0","Kurux (India)<br>Population 1751489.0","Tulu<br>Population 1722768.0","Meithei<br>Population 1250000.0","Tamang<br>Population 1196639.0","Kui<br>Population 916222.0","Khasi<br>Population 912000.0","Bodo<br>Population 900000.0","Mundari<br>Population 750000.0","Angika<br>Population 740892.0","Kokborok<br>Population 695000.0","Mizo<br>Population 529000.0","Karbi<br>Population 420000.0","Ho<br>Population 400000.0","Garhwali<br>Population 279500.0","Sora<br>Population 250000.0","Konyak<br>Population 248000.0","Ao<br>Population 243000.0","Irula<br>Population 200000.0","Kharia<br>Population 200000.0","Korku<br>Population 200000.0","Tshangla<br>Population 193000.0","Thado<br>Population 191000.0","Adi<br>Population 170000.0","Lhota<br>Population 170000.0","Nyishi<br>Population 170000.0","Rabha<br>Population 150000.0","Sherpa<br>Population 143693.0","Tangkhul<br>Population 142000.0","Angami<br>Population 132000.0","Phom<br>Population 123000.0","Dimasa<br>Population 112000.0","Ladakhi<br>Population 105000.0","Simi<br>Population 104000.0","Kabui<br>Population 95000.0","Yimchungru<br>Population 92000.0","Chokri<br>Population 84000.0","Sangtam<br>Population 84000.0","Mao<br>Population 81000.0","Bishnupriya Manipuri Creole<br>Population 72899.0","Chang<br>Population 62000.0","Nruanghmei<br>Population 61000.0","Rengma<br>Population 61000.0","Cuona Menba<br>Population 50000.0","Hmar<br>Population 50000.0","Paite<br>Population 50000.0","Wancho<br>Population 49000.0","Bhumji<br>Population 47000.0","Kheza<br>Population 41000.0","Gutob<br>Population 40000.0","Minyong<br>Population 40000.0","Tangsa<br>Population 40000.0","Khiamngan<br>Population 38000.0","Maram<br>Population 37000.0","Apatani<br>Population 35000.0","Galo<br>Population 35000.0","Korwa<br>Population 35000.0","Liangmai<br>Population 34000.0","Zeme<br>Population 34000.0","Nocte<br>Population 33000.0","Tagin<br>Population 30000.0","Mzieme<br>Population 29000.0","Koda<br>Population 25000.0","Anal<br>Population 23000.0","Maring<br>Population 22000.0","Bangni<br>Population 20000.0","Khoirao<br>Population 20000.0","Manchad<br>Population 20000.0","Padam<br>Population 20000.0","Hrangkhol<br>Population 19000.0","Pochuri<br>Population 17000.0","Khampti<br>Population 13000.0","Taruang<br>Population 9332.0","Rongpo<br>Population 8000.0","Miju<br>Population 6700.0","Bokar<br>Population 5000.0","Sherdukpen<br>Population 3000.0","Spiti<br>Population -1.0","Purik<br>Population -1.0","Padri<br>Population -1.0","Balti<br>Population -1.0"],"type":"scattergeo"},{"hoverinfo":"text+name","lat":[32.4356,31.4099,26.9612,31.2738,16.6151,18.9478,27.096,23.7853,31.4403,11.6952,11.3642,32.9072,20.5093,18.2763,30.4859,33.5413,31.541,33.1835,25.2844,25.7603,27.1153,27.1911,21.0742,25.7801,23.5237,25.6514,24.1968,21.4735,22.1874,27.7078,28.6496,28.664,22.4719,27.839,27.3351,21.8411,27.5569,24.0414,18.667,27.1666,32.7503,32.4912,24.4171,34.6478,28.9889,31.7748,28.488,32.519,30.0037,30.0595,32.0406,27.3327,29.0105,28.1834,28.4735,27.2546,27.3937,34.55,27.1667,32.0267,30.645,33.3947,34.0833],"lon":[76.1242,76.9921,94.0539,77.1295,81.6284,83.5839,87.7356,85.4736,77.1487,75.9375,76.5266,76.5307,78.1787,82.9385,78.0908,76.333,78.3764,76.5747,93.2189,90.3955,88.4687,94.1528,85.6164,92.5927,92.9003,93.2409,93.587,74.0258,92.6477,94.0374,95.8419,94.0347,84.9023,92.8784,92.5735,87.2973,96.7456,93.6639,83.0346,92.6312,76.2451,76.8383,94.378,76.4978,94.4439,78.4753,95.2954,77.6733,80.5641,80.7824,77.1075,92.384,94.7653,95.2651,96.4764,92.5323,91.8965,73.8833,92.6312,77.893,78.3627,76.1352,76.85],"marker":{"color":"rgb(128, 206, 237)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":[79.3655631530961,66.0324927342777,64.77638039262101,63.58312841163028,58.08089991971514,58.08089991971514,58.08089991971514,55.14659937199434,52.47902917081018,52.22268408040219,50.272441713314706,49.725956115603395,49.38598221005333,49.1456604920545,48.85351703234004,44.33535089142367,44.11572559142296,43.62812074029206,43.3416995707383,38.601028554682095,38.37387724591943,37.90028605681104,36.58184957787556,36.58184957787556,36.29032739013658,35.34524633807604,33.87293965112976,33.87293965112976,33.454911117693754,32.53946354968335,32.08658302473608,30.897517542758173,29.531129927065606,28.723112762608096,27.795947594343147,27.795947594343147,27.795947594343147,27.795947594343147,27.795947594343147,26.701864617316836,26.701864617316836,26.67296264604543,26.329868233143962,25.354738138977616,23.570876172229564,23.570876172229564,23.570876172229564,23.570876172229564,23.037339000722696,22.97339377315163,22.382045536812686,22.382045536812686,22.382045536812686,20.8079542507168,20.8079542507168,20.8079542507168,20.8079542507168,18.370545012850698,0.0,0.0,0.0,0.0,0.0]},"mode":"markers","name":"Threatened","text":["Kangdi<br>Population 1700000.0","Mandeali<br>Population 611930.0","Mising<br>Population 550000.0","Mahasui<br>Population 496024.0","Kurru<br>Population 300000.0","Kuvi<br>Population 300000.0","Limbu<br>Population 300000.0","Malto<br>Population 224926.0","Kului<br>Population 170770.0","Kodagu<br>Population 166187.0","Badaga<br>Population 134514.0","Chambeali<br>Population 126589.0","Kolami<br>Population 121855.0","Konda<br>Population 118597.0","Jaunsari<br>Population 114733.0","Bhadravahi<br>Population 66918.0","Kinnauri<br>Population 65097.0","Churahi<br>Population 61199.0","Kachari<br>Population 59000.0","Koch<br>Population 31000.0","Lepcha<br>Population 30000.0","Deori<br>Population 28000.0","Juang<br>Population 23000.0","Tiwa<br>Population 23000.0","Mara<br>Population 22000.0","Biete<br>Population 19000.0","Gangte<br>Population 15000.0","Nahali<br>Population 15000.0","Bawm<br>Population 14000.0","Hill Miri<br>Population 12000.0","Idu<br>Population 11101.0","Motuo Menba<br>Population 9000.0","Asur<br>Population 7000.0","Sulung<br>Population 6000.0","Miji<br>Population 5000.0","Turi<br>Population 5000.0","Singpho<br>Population 5000.0","Kom<br>Population 5000.0","Gorum<br>Population 5000.0","Aka<br>Population 4000.0","Bunan<br>Population 4000.0","Bharmauri<br>Population 3976.0","Moyon<br>Population 3700.0","Brokshat<br>Population 3000.0","Bori<br>Population 2000.0","Jangshung<br>Population 2000.0","Milang<br>Population 2000.0","Tinan<br>Population 2000.0","Darma<br>Population 1761.0","Byangsi<br>Population 1734.0","Kanashi<br>Population 1500.0","Lishpa<br>Population 1500.0","Khamba<br>Population 1500.0","Pasi<br>Population 1000.0","Zaiwa<br>Population 1000.0","Khowa<br>Population 1000.0","Dakpa<br>Population 1000.0","Kundal Shahi<br>Population 500.0","Koro<br>Population -1.0","Khasali<br>Population -1.0","Jad<br>Population -1.0","Bhalesi<br>Population -1.0","Zangskari<br>Population -1.0"],"type":"scattergeo"},{"hoverinfo":"text+name","lat":[18.2293,19.1659,26.6523,27.5033,26.5688,25.2844],"lon":[82.727,82.6391,94.2901,95.2185,89.1979,91.1755],"marker":{"color":"rgb(255, 182, 128)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":[25.354738138977616,24.53644925763686,23.570876172229564,23.570876172229564,20.8079542507168,0.0]},"mode":"markers","name":"Endangered","text":["Geta?<br>Population 3000.0","Remo<br>Population 2500.0","Aiton<br>Population 2000.0","Tai Phake<br>Population 2000.0","Mech<br>Population 1000.0","A'tong<br>Population -1.0"],"type":"scattergeo"},{"hoverinfo":"text+name","lat":[18.5629,30.9823,18.3858,11.6952,33.4589,11.4369,29.8692,19.8287,8.0932,24.2569,8.2549,31.194,6.85,24.4971,21.7594,11.4154,7.915,20.5402,7.9504,19.0621,24.2319,11.3184,26.6867,24.297,24.3521,7.3134,28.3914,28.4638,11.0112,31.0011,26.8485,29.1473,26.9024,7.0245,25.2844,10.639,11.5446,12.6028,12.2326,24.4671,20.1384,11.6952],"lon":[82.8039,77.1569,82.7819,75.6738,76.9152,76.3549,79.0686,78.2281,93.4963,94.0759,93.1022,77.0471,93.8726,93.6145,85.935,76.8576,93.3837,76.0913,93.576,83.4851,93.7463,76.8273,89.5056,93.4497,93.5925,93.6968,93.3837,93.3041,34.2333,77.3107,94.5648,94.5538,94.757,93.8232,90.4614,92.4938,92.2576,92.752,92.9031,94.1473,84.0289,76.4648],"marker":{"color":"rgb(255, 115, 13)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":[42.25185638389087,38.63324166173221,37.46564644340755,34.520803707531336,34.377781572747146,33.713953922876684,32.53946354968335,31.489014383806357,31.489014383806357,31.489014383806357,27.795947594343147,26.67296264604543,25.354738138977616,24.78325306433304,23.570876172229564,23.570876172229564,23.570876172229564,23.570876172229564,21.813289526399984,21.6724056543786,21.01283973179499,20.83034941877594,20.8079542507168,20.293386099643975,18.39029716392222,17.648883545095693,17.23084323808842,17.23084323808842,16.760741174240543,14.584579576981199,13.769846458731536,13.769846458731536,13.769846458731536,13.769846458731536,13.769846458731536,12.176259132378505,12.176259132378505,11.19639589844169,8.283587716870095,0.0,0.0,0.0]},"mode":"markers","name":"Abandoned","text":["Parji<br>Population 51216.0","Sirmaudi<br>Population 31144.0","Gadaba<br>Population 26262.0","Koraga<br>Population 16665.0","Pangvali<br>Population 16285.0","Kuruba<br>Population 14613.0","Bangani<br>Population 12000.0","Naiki<br>Population 10000.0","Muot<br>Population 10000.0","Lamgang<br>Population 10000.0","Pu<br>Population 5000.0","Baghati<br>Population 3976.0","Takahanyilang<br>Population 3000.0","Aimol<br>Population 2643.0","Birhor<br>Population 2000.0","Kota<br>Population 2000.0","Luro<br>Population 2000.0","Nihali<br>Population 2000.0","Sanenyo<br>Population 1300.0","Pengo<br>Population 1254.0","Koireng<br>Population 1056.0","Toda<br>Population 1006.0","Toto<br>Population 1000.0","Tarao<br>Population 870.0","Purum<br>Population 503.0","Lamongse<br>Population 400.0","Mra<br>Population 350.0","Na<br>Population 350.0","Aka<br>Population 300.0","Handuri<br>Population 138.0","Tai Nora<br>Population 100.0","Tangam<br>Population 100.0","Tai Rong<br>Population 100.0","Shompen<br>Population 100.0","Ruga<br>Population 100.0","Onge<br>Population 50.0","Sentilese<br>Population 50.0","Jarawa<br>Population 31.0","Great andamanese<br>Population 5.0","Langrong<br>Population -1.0","Manda<br>Population -1.0","Bellari<br>Population -1.0"],"type":"scattergeo"},{"hoverinfo":"text+name","lat":[30.0358,24.6445,24.976,24.8415,26.5393,29.9333],"lon":[80.1342,94.0567,94.2407,94.0539,92.5378,80.0326],"marker":{"color":"rgb(242, 23, 13)","line":{"color":"rgb(255, 255, 255)","width":1},"opacity":0.85,"size":[6.0,6.0,6.0,6.0,6.0,0.0]},"mode":"markers","name":"Extinct","text":["Rangkas<br>Population 0.0","Sengmai<br>Population 0.0","Chairel<br>Population 0.0","Andro<br>Population 0.0","Ahom<br>Population 0.0","Tolcha<br>Population -1.0"],"type":"scattergeo"}],                        {"geo":{"countrycolor":"rgb(217, 217, 217)","countrywidth":1,"lakecolor":"rgb(255, 255, 255)","landcolor":"rgb(250, 250, 250)","scope":"asia","showlakes":true,"showland":true,"subunitcolor":"rgb(217, 217, 217)","subunitwidth":1},"legend":{"x":0.85,"y":0.4},"showlegend":true,"title":{"text":"Languages by Population in India (2016)<br><sub>Click Legend to Display or Hide Categories</sub>"},"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('03cedbcd-56b3-4045-8ccc-946ce08dff89');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>


</section>
</section>

 ]]></description>
  <category>nlp</category>
  <guid>https://akkikek.xyz/posts/low-resource-langs-india/2020-07-30-endangered-languages-of-india.html</guid>
  <pubDate>Thu, 30 Jul 2020 00:00:00 GMT</pubDate>
  <media:content url="https://akkikek.xyz/posts/low-resource-langs-india/image.png" medium="image" type="image/png" height="63" width="144"/>
</item>
<item>
  <title>Softwares I use</title>
  <dc:creator>Akhilesh </dc:creator>
  <link>https://akkikek.xyz/posts/softwares/2020-05-21-softwares-i-use.html</link>
  <description><![CDATA[ 





<section id="softwares-i-use" class="level2">
<h2 class="anchored" data-anchor-id="softwares-i-use">Softwares I use</h2>
<p>Here are the list of softwares I use for almost everything.</p>
<section id="operating-system" class="level3">
<h3 class="anchored" data-anchor-id="operating-system">Operating System</h3>
<p><a href="https://www.archlinux.org/">Arch Linux</a> with all free software.</p>
</section>
<section id="web-browser" class="level3">
<h3 class="anchored" data-anchor-id="web-browser">Web browser</h3>
<p><a href="https://librewolf-community.gitlab.io/">LibreWolf</a> with vim key bindings.</p>
</section>
<section id="terminal" class="level3">
<h3 class="anchored" data-anchor-id="terminal">Terminal</h3>
<p><a href="https://st.suckless.org/">st</a></p>
</section>
<section id="text-editor" class="level3">
<h3 class="anchored" data-anchor-id="text-editor">Text Editor</h3>
<p><a href="https://neovim.io">Neovim</a> and <a href="https://github.com/hlissner/doom-emacs">Doom Emacs</a></p>
</section>
<section id="mail-client" class="level3">
<h3 class="anchored" data-anchor-id="mail-client">Mail Client</h3>
<p><a href="https://neomutt.org/">Neomutt</a> &amp; <a href="https://github.com/hlissner/doom-emacs">Doom Emacs</a></p>
</section>
<section id="video-player" class="level3">
<h3 class="anchored" data-anchor-id="video-player">Video player</h3>
<p><a href="https://mpv.io/">mpv</a></p>
</section>
<section id="pdf-viewer" class="level3">
<h3 class="anchored" data-anchor-id="pdf-viewer">PDF viewer</h3>
<p><a href="https://en.wikipedia.org/wiki/Zathura_(document_viewer)">Zathura</a></p>
</section>
<section id="window-manager" class="level3">
<h3 class="anchored" data-anchor-id="window-manager">Window Manager</h3>
<p><a href="https://dwm.suckless.org/">dwm</a></p>
</section>
<section id="file-manager" class="level3">
<h3 class="anchored" data-anchor-id="file-manager">File Manager</h3>
<p><a href="https://github.com/gokcehan/lf">lf</a></p>
</section>
<section id="all-images-related-stuff" class="level3">
<h3 class="anchored" data-anchor-id="all-images-related-stuff">All images related stuff</h3>
<p><a href="https://www.gimp.org/">GIMP</a></p>
</section>
<section id="torrent-client" class="level3">
<h3 class="anchored" data-anchor-id="torrent-client">Torrent Client</h3>
<p><a href="https://wiki.archlinux.org/index.php/Transmission">Transmission</a></p>
</section>
<section id="spreadsheet" class="level3">
<h3 class="anchored" data-anchor-id="spreadsheet">Spreadsheet</h3>
<p><a href="https://www.libreoffice.org/">LibreOffice</a></p>
</section>
<section id="file-manager-1" class="level3">
<h3 class="anchored" data-anchor-id="file-manager-1">File Manager</h3>
<p><a href="https://github.com/gokcehan/lf">lf</a></p>
</section>
<section id="shell" class="level3">
<h3 class="anchored" data-anchor-id="shell">Shell</h3>
<p><a href="https://www.zsh.org/">zsh</a> and <a href="http://fishshell.com/">fish</a></p>


</section>
</section>

 ]]></description>
  <category>personal-config</category>
  <guid>https://akkikek.xyz/posts/softwares/2020-05-21-softwares-i-use.html</guid>
  <pubDate>Thu, 21 May 2020 00:00:00 GMT</pubDate>
  <media:content url="https://akkikek.xyz/posts/softwares/image.png" medium="image" type="image/png" height="81" width="144"/>
</item>
</channel>
</rss>
