<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Python ??????? by Xisca Sorell</title>
      <link>https://padlet.com/xiskasorrell/Bookmarks</link>
      <description>Made with a stroke of good luck, or good questions ;)</description>
      <language>en-us</language>
      <pubDate>2022-03-22 21:00:33 UTC</pubDate>
      <lastBuildDate>2022-03-26 10:14:29 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>how to write functions to seperate data into discrete and continuous ?</title>
         <author>pegasusmaximillion2</author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114691988</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:30:50 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114691988</guid>
      </item>
      <item>
         <title>how to i know when to use a lambda or other functions?</title>
         <author>mariabastardo1</author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692187</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:31:17 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692187</guid>
      </item>
      <item>
         <title>I need to get more into &quot;functions&quot;</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692252</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:31:25 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692252</guid>
      </item>
      <item>
         <title>Boxcox</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692328</link>
         <description><![CDATA[<div>Meaning of Boxcox_transform</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:31:33 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692328</guid>
      </item>
      <item>
         <title>is removing outliers always necessary? </title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692567</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:32:03 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692567</guid>
      </item>
      <item>
         <title>How can I get better at understanding/making useful functions?</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692822</link>
         <description><![CDATA[<div>I would say by reading the examples from exercises and forming them into sentences, I usually do understand the function better then</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:32:34 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114692822</guid>
      </item>
      <item>
         <title>while loops</title>
         <author>mariabastardo1</author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693091</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:33:13 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693091</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693214</link>
         <description><![CDATA[<div>how to create new columns automatically from different dates?<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:33:29 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693214</guid>
      </item>
      <item>
         <title>How to understand error messages better?</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693369</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:33:41 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693369</guid>
      </item>
      <item>
         <title>Box-Cox</title>
         <author>xiskasorrell</author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693791</link>
         <description><![CDATA[<div>It is a power transformation used to stabilize variance, make the data more <a href="https://en.wikipedia.org/wiki/Normal_distribution">normal distribution</a>-like, improve the validity of measures of association and for other data stabilization procedures.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:34:38 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114693791</guid>
      </item>
      <item>
         <title></title>
         <author>xiskasorrell</author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114694407</link>
         <description><![CDATA[<div>Understanding error messages is about practise ;) and googleing</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:36:04 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114694407</guid>
      </item>
      <item>
         <title>When you can write a function in one line... it&#39;s better to use a lambda function:</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114694883</link>
         <description><![CDATA[<div>Which one looks nicer?<br><br>def sum(x, y):&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sum = x + y<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return sum<br>or<br><br>lambda x, y: x + y<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:36:58 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114694883</guid>
      </item>
      <item>
         <title></title>
         <author>xiskasorrell</author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114695033</link>
         <description><![CDATA[<div>i = 1<br>while i &lt; 6:<br>&nbsp; print(i)<br>&nbsp; i += 1</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:37:15 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114695033</guid>
      </item>
      <item>
         <title>How can I be certain that I need to normalize data and which type of normalization to use?</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114695538</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:38:16 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114695538</guid>
      </item>
      <item>
         <title>removing skewness</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114695704</link>
         <description><![CDATA[<div>can we use more than one method on the same data to make it look more like a normal distribution? for ex: interpolation + box cox or is more about picking the right one?</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:38:38 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114695704</guid>
      </item>
      <item>
         <title>Testing the functions</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114696797</link>
         <description><![CDATA[<div>This ties in with understanding error messages too but printing A LOT is very useful. I usually print at every line in a function to make sure it works.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:41:08 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114696797</guid>
      </item>
      <item>
         <title>differences between mysql and python</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114699780</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:47:34 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114699780</guid>
      </item>
      <item>
         <title>How do you put a model into practice once you&#39;re happy with how the model has been trained? (practical application)</title>
         <author></author>
         <link>https://padlet.com/xiskasorrell/Bookmarks/wish/2114705918</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-03-26 09:58:42 UTC</pubDate>
         <guid>https://padlet.com/xiskasorrell/Bookmarks/wish/2114705918</guid>
      </item>
   </channel>
</rss>
