2007-09-12: InfoVis:Wiki RSS feeds now working properly!: Difference between revisions

From InfoVis:Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:


<gnuplot>
<gnuplot>
   set output 'budgetExample.png'
   set output 'quadFuncs.png'
   set xlabel "Month of 2004"
  set size 0.4,0.4
   set ylabel "Amount [Euro]"
   set xlabel "x"
   plot 'src:budgetSample_gpl.txt' using 1:2 title 'planned',\
   set ylabel "y"
  'src:budgetSample_gpl.txt' using 1:3 title 'interpolated',\
   plot [x=-4:4] x**2-3, -x**2
  'src:budgetSample_gpl.txt' using 1:4 title 'spent'
</gnuplot>
</gnuplot>


[[Category:News]][[Category:2007/09]]
[[Category:News]][[Category:2007/09]]

Revision as of 10:15, 16 July 2009

As some of you pointed out, we had a problem with the RSS feeds of our Wiki due to a misterious blank line at the beginning of the XML file that caused problems with some RSS readers. Fortunately, we were now able to locate the bug (that was hidden very well) and now all RSS feeds work as expected!

<gnuplot>

  set output 'quadFuncs.png'
  set size 0.4,0.4
  set xlabel "x"
  set ylabel "y"
  plot [x=-4:4] x**2-3, -x**2
</gnuplot>