1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#!/bin/sh
# demos for Grace
#
export GRACE_HOME
# define the location
#
if test -x ../src/xmgrace
then
GRACE=../src/xmgrace
GRACE_HOME=`pwd`/..
else
if test -x ../bin/xmgrace
then
GRACE=../bin/xmgrace
GRACE_HOME=`pwd`/..
else
GRACE=xmgrace
fi
fi
# don't ask stupid questions :)
#
GRACE="$GRACE -noask"
#
#
# new xgr project
$GRACE diode.xgr
#
# explain the row of single character buttons and a few other things
$GRACE explain.agr
#
# display the various axes available
$GRACE axes.agr
#
# display the symbols and line styles
$GRACE symslines.agr
#
# display various fill styles
$GRACE fills.agr
#
# some graph stuff and ticks
$GRACE props.agr
#
# demonstration of many graphs
$GRACE manygraphs.agr
#
# test of a graph inset
$GRACE tinset.agr
#
# some time and date formats
$GRACE times.agr
#
# Australia map
$GRACE au.agr
#
# more log plots
$GRACE tlog.agr
#
# a log2 example
$GRACE log2.agr
#
# a logit scale sample
$GRACE logit.agr
#
# a reciprocal scale sample
$GRACE reciprocal.agr
#
# display fonts and font mappings
$GRACE tfonts.agr
#
# text transforms
$GRACE txttrans.agr
#
# advaned typesetting
$GRACE typeset.agr
#
$GRACE test2.agr
#
# explanation of arrow shape parameters
$GRACE arrows.agr
#
# multiple graphs created with arrange feature
$GRACE co2.agr
#
# a nice sample
$GRACE spectrum.agr
#
# a graph with error bars
$GRACE terr.agr
#
# a fixed graph with XY RADIUS format
$GRACE txyr.agr
#
# string annotations
$GRACE motif.agr
#
# a graph with an XYZ set
$GRACE xyz.agr
#
# a graph with HILO data
$GRACE hilo.agr
#
# a graph with BOXPLOT data
$GRACE boxplot.agr
#
# polar plots
$GRACE polar.agr
#
# bar charts
#
# a bar graph demonstrating specified ticks and tick labels
$GRACE bar.agr
#
# a stacked bar chart
$GRACE stackedb.agr
#
# a bar chart with error bars
$GRACE chartebar.agr
#
# display all types of XY charts
$GRACE charts.agr
#
# pie charts
$GRACE pie.agr
#
# vector map
$GRACE vmap.agr
#
# a bubble plot
$GRACE xysize.agr
#
# an xycolor map
$GRACE xycolor.agr
#
# non-linear curve fitting
#$GRACE logistic.agr
#
|