Difference between revisions of "User:Rfs/Other Scratch Page"

From FreekiWiki
Jump to navigation Jump to search
 
(35 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==>==
 
 
  <gnuplot>
 
  <gnuplot>
  set output 'quadFuncs.png'
+
set terminal jpeg
  set size 0.4,0.4
+
set output 'BGoriAPPWT'
  set xlabel "x"
+
set notitle
  set ylabel "y"
+
set ylabel ''
  plot [x=-4:4] x**2-3, -x**2
+
set xlabel ''
</gnuplot>
+
set timefmt "%m/%d/%y"
 +
#set xdata time
 +
set xtic rotate by 90
 +
set xtics (" 2008-Q1" 01/01/08, " 2008-Q2" 04/01/08, " 2008-Q3" 07/01/08, " 2008-Q4" 10/01/08, " 2009-Q1" 01/01/09)
  
==&==
+
plot '-' title 'Suggested' with linespoints, '-' title 'Fees' with linespoints, '-' title 'Total' with linespoints
<graphviz>#!/usr/bin/circo
 
  digraph D {
 
  
ae [label="Administration\nand\nEducation"]
+
01/01/08 7.75
pr [label="Production\nand\nReuse"]
+
04/01/08 7.73
rr [label="Receiving\nand\nRecycling"]
+
07/01/08 7.27
cc [label="Coordinating\nCommittee"]
+
10/01/08 6.55
 +
01/01/09 36.25
 +
ee
 +
01/01/08 8.73
 +
04/01/08 8.74
 +
07/01/08 7.64
 +
10/01/08 7.83
 +
01/01/09 7.0
 +
ee
 +
01/01/08 16.48
 +
04/01/08 16.47
 +
07/01/08 14.92
 +
10/01/08 14.38
 +
01/01/09 43.25
 +
e
  
cc -> ae
+
</gnuplot>
cc -> pr
 
cc -> rr
 
 
 
ae -> HR
 
ae -> KnowledgeBees
 
ae -> FrontDesk
 
 
 
pr -> ThriftStore
 
pr -> OnlineSales
 
pr -> Build
 
pr -> BulkSales
 
pr -> Laptops
 
 
 
rr -> Receiving
 
rr -> Recycling
 
rr ->
 
 
 
}
 
</graphviz>
 
 
 
 
 
== ^ ==
 
<graphviz>
 
  digraph D {
 
 
 
start [label="Start here", shape="rectangle"]
 
discussion1 [label="General discussion", shape="rectangle"]
 
proposal1 [label="Proposal"]
 
proposal2 [label="Pre-stated proposal", shape="rectangle"]
 
discussion2 [label="Discuss proposal"]
 
test [label="Test\nIs there consensus?"]
 
modifications [label="Modify proposal"]
 
concerns [label="State concerns"]
 
block [label="Block decision", shape="rectangle"]
 
standaside [label="Stand aside"]
 
consensus [label="Consensus achieved", shape="rectangle"]
 
action [label="Implementation\nwho will do what?\ntimelines", shape="rectangle"]
 
clarify1 [label="Read back and clarify"]
 
clarify2 [label="Clarify"]
 
 
 
start -> discussion1
 
start -> proposal2
 
 
 
discussion1 -> proposal1
 
proposal1 -> clarify1
 
clarify1 -> test
 
 
 
proposal2 -> clarify2
 
clarify2 -> discussion2
 
discussion2 -> test
 
 
 
test -> concerns [label="NO"]
 
test -> consensus [label="YES"]
 
concerns -> discussion2
 
concerns -> modifications
 
modifications -> clarify1
 
concerns -> standaside
 
concerns -> block
 
standaside -> consensus
 
consensus -> action
 
 
 
}
 
</graphviz>
 

Latest revision as of 17:33, 17 January 2009

<gnuplot>

set terminal jpeg set output 'BGoriAPPWT' set notitle set ylabel set xlabel set timefmt "%m/%d/%y"

  1. set xdata time

set xtic rotate by 90 set xtics (" 2008-Q1" 01/01/08, " 2008-Q2" 04/01/08, " 2008-Q3" 07/01/08, " 2008-Q4" 10/01/08, " 2009-Q1" 01/01/09)

plot '-' title 'Suggested' with linespoints, '-' title 'Fees' with linespoints, '-' title 'Total' with linespoints

01/01/08 7.75 04/01/08 7.73 07/01/08 7.27 10/01/08 6.55 01/01/09 36.25 ee 01/01/08 8.73 04/01/08 8.74 07/01/08 7.64 10/01/08 7.83 01/01/09 7.0 ee 01/01/08 16.48 04/01/08 16.47 07/01/08 14.92 10/01/08 14.38 01/01/09 43.25 e

</gnuplot>