!resistance_graph.gle size 40 50 ! Set size of the graph paper in cm amove 0.1 1 ! 0,0 at bottom left corner of graph to 40,50 at top right hand corner begin graph size 40 50 ! Set size of the graph in cm title "Resistance Graph" hei 1 color red dist 2 xaxis min 0 max 60 dticks 10 dsubticks 1 xticks length 0.3 yticks length 0.3 yaxis min -2 max 18 dticks 1 dsubticks 1 ytitle "Temperature ('C) and Resistance (K Ohms)" hei 1 xtitle "Time (Minutes)" hei 1 data resistance_cold_start_temperature.txt d1 line color blue d1 lstyle 1 marker fcircle msize 0.4 key "cold start temperature" data resistance_cold_start_resistance.txt d2 line color green d2 lstyle 1 marker ftriangle msize 0.4 key "cold start with resistance" data resistance_hot_start_temperature.txt d3 line color red d3 lstyle 1 marker fsquare msize 0.4 key "hot start temperature" data resistance_hot_start_resistance.txt d4 line color magenta d4 lstyle 1 marker ftriangle msize 0.4 key "hot start with resistance" key pos tr hei 0.6 !Draws a key end graph