<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Changing Tides - Brenda Moon &#187; Science</title>
	<atom:link href="http://www.moon.net.au/category/science/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.moon.net.au</link>
	<description>Brenda&#039;s Blog</description>
	<lastBuildDate>Sun, 01 Jan 2012 08:40:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Learning Python &#8211; iPython, matplotlib and Pandas</title>
		<link>http://www.moon.net.au/2012/01/01/learning-python-matplotlib-and-pandas/</link>
		<comments>http://www.moon.net.au/2012/01/01/learning-python-matplotlib-and-pandas/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 08:40:54 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Data Visualisation]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://moon.net.au/?p=443</guid>
		<description><![CDATA[<p>As I said in my last post, I was inspired by the talk at OSDC2011Â by Dr Edward Schofield, Python for R&#38;D to try out Python and in particular iPython.Â </p> <p>So I&#8217;ve been learning Python by using iPython for analysing my twitter data. The iPython notebook provides a fantastic environment for doing this by letting you [...]]]></description>
			<content:encoded><![CDATA[<p>As I said in <a href="http://www.moon.net.au/2012/01/01/great-talk-at-osdc2011-python-for-r-d-edward-schofield/">my last post</a>, I was inspired by the talk at <a href="http://osdc.com.au/">OSDC2011</a>Â by Dr Edward Schofield, <em>Python for R&amp;D</em> to try out Python and in particular iPython.Â </p>
<p>So I&#8217;ve been learning Python by using <a href="http://ipython.org/">iPython</a> for analysing my twitter data. The iPython notebook provides a fantastic environment for doing this by letting you write notes in between blocks of python code, and see the results from running the python on the same page.</p>
<p>I&#8217;m starting ipython by opening a terminal window in the directory I have my ipython notebooks and running:<br />
<code>ipython notebook --pylab inline</code> which makes the matplotlib graphics appear inline (on the webpage) instead of in a separate window.</p>
<p>I tried a few different approaches to getting everything working on Mac OSX Lion. The <a href="https://github.com/fonnesbeck/ScipySuperpack">Scipi-Superpack for OS X</a> was the last I tried, and it seems to have got the last piece that I hadn&#8217;t got working via the other approaches, <a href="http://pandas.sourceforge.net/">Pandas</a> and <a href="http://statsmodels.sourceforge.net/">scikits.statsmodels</a>, working.</p>
<p>I&#8217;m using the dev version of <a href="https://github.com/ipython/ipython">iPython from GitHub</a>. It is great that they have it setup so that each time I pull the updates they are available straight away without any extra install just by restarting the notebook.</p>
<p>I began by working out how to get data sets from mySql and from Apache Solr and then draw graphs of them using matplotlib. I used paired lists for this as that was what the <a href="http://matplotlib.sourceforge.net/">matplotlib</a> examples used. When I started trying to add time series of different lengths and with different gaps in the data I started to find the limitations of paired lists. Looking around for python time series libraries I found <a href="http://pytseries.sourceforge.net/">scikits timeseries</a> which looked good, but then came across scikits.statsmodels and Pandas and decided to try them.</p>
<p>If you want to try running this code, I&#8217;ve linked the iPython notebook that these code snippets were taken from at the bottom of the post. </p>
<h3>Convert pair of Python lists to Pandas series</h3>
<p>Pandas makes it easy to convert the paired lists into a pandas.series object:</p>
<pre class="brush: python; highlight: [9]; title: ; notranslate">
def convertListPairToTimeSeries(dList, cList):
    # my dateList had date objects, so convert back to datetime objects
    dListDT = [datetime.datetime.combine(x, datetime.time()) for x in dList]
    # found that NaN didn't work if the cList contained int data
    cListL = [float(x) for x in cList]
    # create the index from the datestimes list
    indx = pandas.Index(dListDT)
    # create the timeseries
    ts = pandas.Series(cListL, index=indx)
    # fill in missing days
    ts = ts.asfreq(pandas.datetools.DateOffset())
    return ts
</pre>
<h3>Adjusting the Pandas series</h3>
<p>I then made the two data sets (tweets received per day and tweets limited per day) have the same start and end and filled in all the missing days with 0&#8242;s or, where I knew that I had a data collection outage, with NaN.</p>
<pre class="brush: python; title: ; notranslate">
# my data had lots of gaps that were actually 0 values, not missing data
# So I used this to fix the NaN outside the known outage
startOutage = datetime.datetime(2011,12,7)
endOutage = datetime.datetime(2011,12,8)
# set all NaN values to 0
tsFilled = tSeries.fillna(0)
# set the known outage values back to NAN
tsFilled.ix[startOutage:endOutage] = numpy.NAN
</pre>
<p>If the gaps in my data were all meant to missing values instead of 0, I could have just left the series as they were and used pandas.join instead of + to add them together</p>
<h3>Truncating the data</h3>
<p>I truncated the data, both to make the series the same length (although there are other ways to do this) and to remove partial days of data at the start and end of the periods.</p>
<pre class="brush: python; title: ; notranslate">
# use slicing to change length of data
tSeriesSlice = tSeries.ix[startData:endData]
# use truncate instead of slicing to change length of data
tSeriesTruncate = tSeries.truncate(before=startData, after=endData)
</pre>
<h3>Plotting the data</h3>
<p>Basic graphing of a Pandas series is very straight forward:</p>
<pre class="brush: python; title: ; notranslate">
tsFilled.plot();
</pre>
<p><a href="http://www.moon.net.au/wp-content/uploads/2012/01/graph1.png"><img src="http://www.moon.net.au/wp-content/uploads/2012/01/graph1.png" alt="" title="graph1" width="407" height="262" class="alignnone size-full wp-image-472" /></a></p>
<p>It is easy to have multiple lines on the same graph, and to add titles and axis labels.</p>
<pre class="brush: python; title: ; notranslate">
tsFilled.plot(label=&quot;original&quot;)
tsNew = tsFilled+(rand(len(tsFilled)))
tsNew.plot(label=&quot;adding&quot;)
tsNew1 = tsFilled.fillna(1)
tsNew1 = tsNew1 +(rand(len(tsNew1)))
tsNew1.plot(label=&quot;fillna+adding&quot;)
plt.legend(loc=3)
plt.title(&quot;Testing Panda Plotting&quot;)
plt.ylabel(&quot;Counts&quot;);
</pre>
<p><a href="http://www.moon.net.au/wp-content/uploads/2012/01/graph2.png"><img src="http://www.moon.net.au/wp-content/uploads/2012/01/graph2.png" alt="" title="graph2" width="407" height="273" class="alignnone size-full wp-image-473" /></a></p>
<p>For more control over the layout, it is possible to pass the matplotlib axis in the Pandas plot statement.</p>
<pre class="brush: python; title: ; notranslate">
# loc = MonthLocator()
loc = DayLocator(interval=2)
formatter = DateFormatter('%d %b')
fig = plt.figure(figsize=(8,4))
ax = fig.add_subplot(211)
plt.title(&quot;Testing Panda Plotting&quot;)
tsFilled.plot(label=&quot;original&quot;, ax=ax)
plt.ylabel(&quot;Counts&quot;)
plt.legend()
ax2 = fig.add_subplot(212)
tsFilled.fillna().plot(label=&quot;filled&quot;, ax=ax2, color='g')
plt.legend()
plt.ylabel(&quot;Counts&quot;)
plt.xlabel(&quot;2011&quot;)
ax2.xaxis.set_major_locator(loc)
ax2.xaxis.set_major_formatter(formatter)
labels = ax2.get_xticklabels()
setp(labels, rotation=80, fontsize=10);
</pre>
<p><a href="http://www.moon.net.au/wp-content/uploads/2012/01/graph3.png"><img src="http://www.moon.net.au/wp-content/uploads/2012/01/graph3.png" alt="" title="graph3" width="500" height="283" class="alignnone size-full wp-image-474" /></a></p>
<p>For plotting multiple lines, it is probably better to add the series into a Pandas dataframe and then plot from that, but I&#8217;ll leave that for another day.</p>
<p>I&#8217;m new to python, matplotlib and Pandas, so I&#8217;d be very happy for any feedback about better ways to do things.</p>
<h3>iPython Notebook for these examples</h3>
<p><a href='http://www.moon.net.au/wp-content/uploads/2012/01/pandasTimeSeriesNotes.ipynb_.zip'>Download pandasTimeSeriesNotes.ipynb_.zip (58k)</a></p>
<h3>Links</h3>
<ul>
<li><a href="http://ipython.org/">iPython &#8211; http://ipython.org/</a></li>
<li><a href="https://github.com/ipython/ipython">iPython from GitHub &#8211; https://github.com/ipython/ipython</a></li>
<li><a href="https://github.com/fonnesbeck/ScipySuperpack">Scipi-Superpack for OS X &#8211; https://github.com/fonnesbeck/ScipySuperpack</a></li>
<li><a href="http://pandas.sourceforge.net/">Pandas &#8211; http://pandas.sourceforge.net/</a></li>
<li><a href="http://statsmodels.sourceforge.net/">scikits.statsmodels &#8211; http://statsmodels.sourceforge.net/</a></li>
<li><a href="https://groups.google.com/group/pystatsmodels">Pandas and StatsModels discussion list &#8211; https://groups.google.com/group/pystatsmodels</a></li>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib &#8211; http://matplotlib.sourceforge.net/</a></li>
<li><a href="http://pytseries.sourceforge.net/">scikits timeseries &#8211; http://pytseries.sourceforge.net/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2012/01/01/learning-python-matplotlib-and-pandas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asteroid Discovery since 1980 &#8211; video by British astronomer Scott Manley</title>
		<link>http://www.moon.net.au/2010/08/29/asteroid-discovery-since-1980-video-by-british-astronomer-scott-manley/</link>
		<comments>http://www.moon.net.au/2010/08/29/asteroid-discovery-since-1980-video-by-british-astronomer-scott-manley/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 06:31:15 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Data Visualisation]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Science Communication]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/?p=410</guid>
		<description><![CDATA[<p>An amazing video of Asteroid discovery since 1980. It is best viewed in high resolution at YouTube. There is an interesting article on the Daily Mail UK about it too.</p> <p></p> ]]></description>
			<content:encoded><![CDATA[<p>An amazing video of Asteroid discovery since 1980.  It is best viewed in high resolution at YouTube. There is an interesting <a href="http://www.dailymail.co.uk/sciencetech/article-1306555/Our-terrifyingly-crowded-solar-How-asteroids-closing-in.html">article on the Daily Mail UK</a> about it too.</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/S_d-gs0WoUw?fs=1&amp;hl=en_US&amp;rel=0&amp;color1=0x234900&amp;color2=0x4e9e00&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/S_d-gs0WoUw?fs=1&amp;hl=en_US&amp;rel=0&amp;color1=0x234900&amp;color2=0x4e9e00&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2010/08/29/asteroid-discovery-since-1980-video-by-british-astronomer-scott-manley/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Praying mantis hatching</title>
		<link>http://www.moon.net.au/2008/10/18/praying-mantis-hatching/</link>
		<comments>http://www.moon.net.au/2008/10/18/praying-mantis-hatching/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 03:40:35 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/?p=224</guid>
		<description><![CDATA[<p></p> <p>When I looked out our dining room window this morning I saw hundreds of tiny praying mantises on the window. Â The picture is from outside &#8211; at the top of the window. Â You can see the egg case that the nymphs are coming out of. They were all over the window too.</p> [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.moon.net.au/wp-content/uploads/2008/10/dscf5275.jpg"><img class="alignnone size-full wp-image-223" title="Praying mantises" src="http://www.moon.net.au/wp-content/uploads/2008/10/dscf5275.jpg" alt="" width="500" height="281" /></a></p>
<p>When I looked out our dining room window this morning I saw hundreds of tiny praying mantises on the window. Â The picture is from outside &#8211; at the top of the window. Â You can see the egg case that the nymphs are coming out of. They were all over the window too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2008/10/18/praying-mantis-hatching/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Inspired</title>
		<link>http://www.moon.net.au/2008/08/17/inspired/</link>
		<comments>http://www.moon.net.au/2008/08/17/inspired/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 07:08:23 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/?p=207</guid>
		<description><![CDATA[<p>I&#8217;ve been having a lot of fun recentlyÂ collaboratingÂ withÂ Eleanor Gates-Stuart and Barry Moon. We&#8217;ve setup a website for our project &#8211; Â m o o n s t u a r t Â  &#8211; atÂ moonstuart.net.</p> <p>We&#8217;re showing an installation called boidSong in the &#8220;Inspired&#8221; art exhibition at The Front Gallery in Lyneham from the 20th-25th August as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been having a lot of fun recentlyÂ collaboratingÂ withÂ Eleanor Gates-Stuart and Barry Moon. We&#8217;ve setup a website for our project &#8211; Â <strong>m</strong> o o n <strong>s</strong> t u a r t Â  &#8211; atÂ <a href="http://moonstuart.net"><strong>m</strong>oon<strong>s</strong>tuart.net</a>.</p>
<p>We&#8217;re showing an installation called <strong>boidSong</strong> in the &#8220;Inspired&#8221; art exhibition at The Front Gallery in Lyneham from the 20th-25th August as part of National Science Week. Â </p>
<p>The opening is at 8pm on Wednesday 20th August.Â </p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2008/08/17/inspired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Science Links for early secondary&#8230;</title>
		<link>http://www.moon.net.au/2008/03/18/links-for-2008-03-18/</link>
		<comments>http://www.moon.net.au/2008/03/18/links-for-2008-03-18/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 04:24:05 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Home Education]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/2008/03/18/links-for-2008-03-18/</guid>
		<description><![CDATA[<p>I&#8217;ve spent some time today adding links into del.icio.us that I think are useful for early high school science, although a lot of them are good for much wider age range.</p> Back to basics The sites listed below provide an excellent introduction to several basic science concepts. You can visit the links in sequence or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent some time today adding links into del.icio.us that I think are useful for early high school science, although a lot of them are good for much wider age range.</p>
<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.science.org.au/scied/basics.htm">Back to basics</a></div>
<div class="delicious-extended">The sites listed below provide an excellent introduction to several basic science concepts. You can visit the links in sequence or use the annotations to select those that contain information most relevant to your interests.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.princeton.edu/artofscience/gallery2006/">Art of Science Competition / 2006 Gallery</a></div>
<div class="delicious-extended">In the spring of 2006 we again asked the Princeton University community to submit imagesâ€”and, for the first time, videos and soundsâ€”produced in the course of research or incorporating tools and concepts from science.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/art">art</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.sciencebydoing.edu.au/">Welcome &#8211; Science by Doing</a></div>
<div class="delicious-extended">Welcome to the pilot program of Â Science by Doing. This is where you can learn lots of science and have fun at the same time. Early secondary.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://meteorites.wustl.edu/meteorwrongs/meteorwrongs.htm">A Photo Gallery of Meteorwrongs</a></div>
<div class="delicious-extended">We have, over the years, been sent many rocks and photographs of rocks that finders suspect to be meteorites.Â The tongue-in-cheak term for a rock that is not a meteorite is a meteorwrong.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.biology4kids.com/">Rader&#8217;s BIOLOGY 4 KIDS.COM</a></div>
<div class="delicious-extended">Basic biology information. It&#8217;s not just biology for kids, it&#8217;s for everyone. We have information on cell structure, cell function, scientific studies, plants, vertebrates, invertebrates, and other life science topics.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/biology">biology</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.geography4kids.com/">Rader&#8217;s GEOGRAPHY 4 KIDS.COM</a></div>
<div class="delicious-extended">Physical geography and earth science basics. It&#8217;s not just for geography for kids, it&#8217;s for everyone. This site has an introduction to the earth sciences that includes topics on the Earth&#8217;s structure, atmosphere, hydrosphere, and biosphere.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/geography">geography</a> <a href="http://del.icio.us/brmoon/earth_science">earth_science</a> <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.cosmos4kids.com/">Rader&#8217;s COSMOS4KIDS.COM</a></div>
<div class="delicious-extended">Astronomy basics and the science of the stars</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/astronomy">astronomy</a> <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.physics4kids.com/">Rader&#8217;s PHYSICS 4 KIDS.COM</a></div>
<div class="delicious-extended">Basic physics information. It&#8217;s not just physics for kids, it&#8217;s for everyone. We have information on motion, heat and thermodynamics, electricity &#038; magnetism, light, and modern physics.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/physics">physics</a> <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.numbernut.com/">Rader&#8217;s NUMBERNUT.COM</a></div>
<div class="delicious-extended">We now have three big sections on the site:</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/maths">maths</a> <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://en.wikipedia.org/wiki/Portal:Science">Portal:Science &#8211; Wikipedia, the free encyclopedia</a></div>
<div class="delicious-extended">The Wikipedia science portal allows you to browse the science topics on wikipedia.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.questacon.com.au/">Questacon</a></div>
<div class="delicious-extended">Welcome to Questacon, Australia&#8217;s National Science &#038; Technology Centre!</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/education">education</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.abc.net.au/science/">The Lab</a></div>
<div class="delicious-extended">Australian Broadcasting Corporation&#8217;s Gateway to Science</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/brmoon/science">science</a> <a href="http://del.icio.us/brmoon/yr7-10">yr7-10</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2008/03/18/links-for-2008-03-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SciVee &#8211; Science Video</title>
		<link>http://www.moon.net.au/2007/08/21/scivee-science-video/</link>
		<comments>http://www.moon.net.au/2007/08/21/scivee-science-video/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 00:55:40 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/2007/08/21/scivee-science-video/</guid>
		<description><![CDATA[<p>The Public Library of Science (PLoS), National Science Foundation and the San Diego Supercomputer Center have released a new website where scientists can post videos. At this stage it allows the upload of videos related to articles published in PLoS journals. From their FAQ:</p> <p style="margin-left: 40px;">What is SciVee?</p> <p style="margin-left: 40px;">SciVee is about the [...]]]></description>
			<content:encoded><![CDATA[<p>The Public Library of Science (PLoS),  National Science Foundation and the San Diego Supercomputer Center have released a new website where scientists can post videos.  At this stage it allows the upload of videos related to articles published in PLoS journals. From their FAQ:</p>
<p style="margin-left: 40px;"><b>What is SciVee?</b></p>
<p style="margin-left: 40px;">SciVee is about the free and widespread dissemination and comprehension of science. To learn more about SciVee link to our <a href="http://www.scivee.tv/about">About Page</a>.</p>
<p style="margin-left: 40px;">SciVee is operated in partnership with the <a href="http://www.plos.org/">Public Library of Science (PLoS)</a>, the <a href="http://www.nsf.org/">National Science Foundation (NSF)</a> and the <a href="http://www.sdsc.edu/">San Diego Supercomputer Center (SDSC)</a>. Please see our <a href="http://www.scivee.tv/partners">Partners page</a> to learn more about them.</p>
<p>PLoS is a group of online peer reviewed journals using a new approach &#8211; the journals are free to access but charge a fee if you want to publish an article in them.&nbsp; This fee covers the costs of publication and peer review &#8211; but the articles still need to pass peer review in order to be published.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2007/08/21/scivee-science-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Quantum Zoo: A Tourist&#8217;s Guide to the Never-Ending Universe</title>
		<link>http://www.moon.net.au/2007/07/19/the-quantum-zoo-a-tourists-guide-to-the-never-ending-universe/</link>
		<comments>http://www.moon.net.au/2007/07/19/the-quantum-zoo-a-tourists-guide-to-the-never-ending-universe/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 10:25:30 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/2007/07/19/the-quantum-zoo-a-tourists-guide-to-the-never-ending-universe/</guid>
		<description><![CDATA[<p> </p> <p>I found this book very easy to read despite the complicated ideas it covers. The author has succeeded in making it an entertaining and accessible book.</p> <p>It gives a good overview of quantum physics both from a historical perspective and the implications quantum physics has for our understanding of the world.</p> <p>It doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>  <a href="http://www.amazon.com/gp/redirect.html%3FASIN=0309096227%26tag=changingtides-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/0309096227%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" title="Click and drag this image to the post editor"><img src="http://ec1.images-amazon.com/images/I/21NDCFF5ZZL.jpg" width="108" /></a><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0309096227%26tag=changingtides-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/0309096227%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_blank"></a></p>
<p>I found this book very easy to read despite the complicated ideas it covers.  The author has succeeded in making it an entertaining and accessible book.</p>
<p>It gives a good overview of quantum physics both from a historical perspective and the implications quantum physics has for our understanding of the world.</p>
<p>It doesn&#8217;t attempt to cover any of the mathematics or complexity.  It explains any specialist terms at they are introduced, and uses good analogies to give you a feel for the topic.</p>
<p>If you are interested in physics then this is a great way to start looking at Quantum Physics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2007/07/19/the-quantum-zoo-a-tourists-guide-to-the-never-ending-universe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Melbourne University &#8211; The July Lectures in Physics</title>
		<link>http://www.moon.net.au/2007/07/13/melbourne-university-the-july-lectures-in-physics/</link>
		<comments>http://www.moon.net.au/2007/07/13/melbourne-university-the-july-lectures-in-physics/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 04:18:34 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Home Education]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.moon.net.au/2007/07/13/melbourne-university-the-july-lectures-in-physics/</guid>
		<description><![CDATA[<p>If you are interested in Physics, then these Public Lectures are very good. </p> <p>I&#8217;m not sure why, but they always seem to be the best lectures we go to during the year. I think it may be because they go for longer than the 1 hour that most public lectures run for. The are [...]]]></description>
			<content:encoded><![CDATA[<p>If you are interested in Physics, then these Public Lectures are very<br />
good. </p>
<p>I&#8217;m not sure why, but they always seem to be the best lectures we go to during the year. I think it may be because they go for longer than the 1 hour that most public lectures run for.  The are scheduled to be from 8pm to 10pm but usually go for about 1.5 hours. So they can cover more detail on the selected topic.</p>
<p><a href="http://kiosk.ph.unimelb.edu.au/news_events/july_lectures">http://kiosk.ph.unimelb.edu.au/news_events/july_lectures</a></p>
<p>The first one was last Friday night, and it was excellent. One every<br />
Friday night at 8pm during July.</p>
<p>A list of all the events at Melbourne Uni is available here: <a href="http://events.unimelb.edu.au/">http://events.unimelb.edu.au/</a> (tip:  search for &#8220;Public Lectures&#8221;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2007/07/13/melbourne-university-the-july-lectures-in-physics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freakonomics</title>
		<link>http://www.moon.net.au/2006/03/15/freakonomics/</link>
		<comments>http://www.moon.net.au/2006/03/15/freakonomics/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 05:46:31 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Home Education]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://moon.net.au/2006/03/15/freakonomics/</guid>
		<description><![CDATA[<p>This is a very interesting book which takes a very different look at Economics.</p>
<p>&#8220;Freakonomics is a book that will change the way you look at the world. It is not like an ordinary non-fiction book, it’s full of quirky facts and seemingly illogical truths. For example; which is more dangerous, a house with a pool or a house with a gun? In Freakonomics you’ll for everything from what schoolteachers and sumo wrestlers have in common to why drug dealers still live with their mums.&#8221;</p>
<p></p>
<p>The authors have a website http://www.freakonomics.com/ which has some updated information, reviews and a link to a student guide.  The student guide provides an interesting way to have a second look at the book.  There is also a teachers guide available if you apply for a userid/password from the Harper Academic website.</p>
]]></description>
			<content:encoded><![CDATA[<p>This is a very interesting book which takes a very different look at Economics.</p>
<blockquote><p>&#8220;<strong><span style="font-size: 12pt" /></strong>Freakonomics is a book that will change the way you look at the world. It is not like an ordinary non-fiction book, it’s full of quirky facts and seemingly illogical truths. For example; which is more dangerous, a house with a pool or a house with a gun? In Freakonomics you’ll for everything from what schoolteachers and sumo wrestlers have in common to why drug dealers still live with their mums.&#8221;</p></blockquote>
<p><a title="View product details at Amazon" href="http://www.amazon.com/exec/obidos/redirect?tag=changingtides-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=006073132X%2526tag=changingtides-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/006073132X%25253FSubscriptionId=1Q191FBHXV4QEBNGFQ82"><img alt="Freakonomics : A Rogue Economist Explores the Hidden Side of Everything" src="http://images.amazon.com/images/P/006073132X.01._SCMZZZZZZZ_.jpg" /></a></p>
<p>The authors have a website <a href="http://www.freakonomics.com/">http://www.freakonomics.com/</a> which has some updated information, reviews and a link to a student guide.  The student guide provides an interesting way to have a second look at the book.  There is also a teachers guide available if you apply for a userid/password from the Harper Academic website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2006/03/15/freakonomics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving three mysteries at once</title>
		<link>http://www.moon.net.au/2005/06/23/solving-three-mysteries-at-once/</link>
		<comments>http://www.moon.net.au/2005/06/23/solving-three-mysteries-at-once/#comments</comments>
		<pubDate>Thu, 23 Jun 2005 03:59:41 +0000</pubDate>
		<dc:creator>Brenda</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://moon.net.au/2005/06/23/solving-three-mysteries-at-once/</guid>
		<description><![CDATA[<p>An interesting article on physicsweb:</p> <p>Planetary scientists have developed a theory that can explain three outstanding puzzles about our solar system: Why do the giant planets have eccentric and tilted orbits? How did Jupiter get its Trojan asteroids? And what caused the Late Heavy Bombardment some 700 million years after the Earth and Moon were [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting article on physicsweb:</p>
<blockquote><p>Planetary scientists have developed a theory that can explain three outstanding puzzles about our solar system: Why do the giant planets have eccentric and tilted orbits? How did Jupiter get its Trojan asteroids? And what caused the Late Heavy Bombardment some 700 million years after the Earth and Moon were formed? The answer seems to be that all three phenomena seem to be a direct result of Saturn and Jupiter shifting their orbits in the early solar system.</p></blockquote>
<p><a href="http://physicsweb.org/articles/news/9/5/17">Read the full article</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moon.net.au/2005/06/23/solving-three-mysteries-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

