<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Series by Saritha Vijayachandran</title>
      <link>https://padlet.com/saritha2014bvm/seriesrevision</link>
      <description>Complete Series in one picture</description>
      <language>en-us</language>
      <pubDate>2021-06-18 16:28:37 UTC</pubDate>
      <lastBuildDate>2021-07-17 09:06:20 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Series (One Dimensional Data Structure)</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614630635</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 16:31:15 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614630635</guid>
      </item>
      <item>
         <title>Creating Series</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614630974</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 16:31:29 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614630974</guid>
      </item>
      <item>
         <title>Empty Series</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614644157</link>
         <description><![CDATA[<div>import pandas as pd</div><div>s1=pd.Series()</div><div>print(s1)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 16:39:58 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614644157</guid>
      </item>
      <item>
         <title>Using List</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614661454</link>
         <description><![CDATA[<div>import pandas as pd</div><div>l=[10,20,30,40] #Define list</div><div>s1=pd.Series(l)#Create Series</div><div>print(s1)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 16:50:19 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614661454</guid>
      </item>
      <item>
         <title>Using Dictionary</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614667716</link>
         <description><![CDATA[<div>import pandas as pd</div><div>d={'Jan':31,'Feb':28,'Mar':31,'Apr':30}</div><div>s1=pd.Series(d)</div><div>print(s1)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 16:54:18 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614667716</guid>
      </item>
      <item>
         <title>Using ndarray</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614669423</link>
         <description><![CDATA[<div>import pandas as pd&nbsp;</div><div>import numpy as np&nbsp;</div><div>l=[‘a’,’b’,’c’,’d’]</div><div>data = np.array(l)&nbsp;</div><div>s = pd.Series(data)</div><div>print(s)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 16:55:20 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614669423</guid>
      </item>
      <item>
         <title>Constant value</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614731029</link>
         <description><![CDATA[<div>import pandas as pd</div><div>import numpy as np</div><div>ind=['Aparna','Akash','Akshay','Sonia','Akshitha']</div><div>s=pd.Series('Welcome to 2020-21',index=ind)</div><div>print(s)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:35:22 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614731029</guid>
      </item>
      <item>
         <title>Mathematic Expression</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614733351</link>
         <description><![CDATA[<div>import pandas as pd</div><div>import numpy as np</div><div>d=np.array([1,2,3,4])</div><div>ind=['a','b','c','d']</div><div>s1=pd.Series(d*2,index=ind)</div><div>print(s1)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:36:40 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614733351</guid>
      </item>
      <item>
         <title>Using NaN values for missing values</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614734762</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:37:46 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614734762</guid>
      </item>
      <item>
         <title>Attributes</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614738085</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:40:06 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614738085</guid>
      </item>
      <item>
         <title>Display Values</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614742094</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:43:05 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614742094</guid>
      </item>
      <item>
         <title>Mathematic Operations</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614752651</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:50:56 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614752651</guid>
      </item>
      <item>
         <title></title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614759002</link>
         <description><![CDATA[<div>import pandas as pd</div><div>import numpy as np</div><div>s=pd.Series([1,3,np.nan,5,7])</div><div>print(s)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:55:46 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614759002</guid>
      </item>
      <item>
         <title></title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614761489</link>
         <description><![CDATA[<div>print(s1+s2)<br>In all the operations, if both the series are of the same index, based on the operator, operation will be performed.&nbsp;<br>If the index are different, NaN will be added.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:57:37 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614761489</guid>
      </item>
      <item>
         <title>Retrieving values based on condition</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614762208</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:58:06 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614762208</guid>
      </item>
      <item>
         <title>Difference between s1&lt;2 and s1[s1&lt;2]</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614764021</link>
         <description><![CDATA[<div>s1&lt;2<br>s1[s1&lt;2]</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 17:59:30 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614764021</guid>
      </item>
      <item>
         <title>Updating values</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614765673</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:00:49 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614765673</guid>
      </item>
      <item>
         <title></title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614767369</link>
         <description><![CDATA[<div>1. Using [ ] -&nbsp;<br>print(s1['d'])<br>2. Accessing multiple values<br>print(s1[['a','c','e']])<br>3. Slicing<br>print(s1[:3])<br>print(s1[-3:])<br>4. iloc<br>print(s1.iloc[1:4])<br>5. loc<br>print(s1.loc['a':'c'])<br>6. head()<br>7. tail()</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:02:08 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614767369</guid>
      </item>
      <item>
         <title></title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614768978</link>
         <description><![CDATA[<div>Series.index&nbsp;<br>Series.values&nbsp;<br>Series.dtype&nbsp;<br>Series.shape</div><div>Series.nbytes&nbsp;</div><div>Series.ndim&nbsp;</div><div>Series.size&nbsp;</div><div>Series.hasnans&nbsp;</div><div>Series.empty&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:03:25 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614768978</guid>
      </item>
      <item>
         <title></title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614772183</link>
         <description><![CDATA[<div>series[3]=12<br>series[[1,2]]=[90,89]<br>s1.index=['a','b','c']</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:06:02 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614772183</guid>
      </item>
      <item>
         <title>Naming a Series</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614776445</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:09:23 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614776445</guid>
      </item>
      <item>
         <title></title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614777452</link>
         <description><![CDATA[<div>s1=pd.Series({'Jan':31,'Feb':28,'Mar':31,})</div><div>s1.name=‘Days’</div><div>s1.index.name=‘Month’</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:10:14 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614777452</guid>
      </item>
      <item>
         <title>Deleting an element</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614778943</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:11:28 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614778943</guid>
      </item>
      <item>
         <title>Drop() method</title>
         <author>saritha2014bvm</author>
         <link>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614779716</link>
         <description><![CDATA[<div>Eg: S.drop(3)&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 18:12:11 UTC</pubDate>
         <guid>https://padlet.com/saritha2014bvm/seriesrevision/wish/1614779716</guid>
      </item>
   </channel>
</rss>
