|
68 | 68 | ("liststepplot", "ListStepPlot[{1,4,2,5,3}]"), |
69 | 69 | # ("manipulate", "Manipulate[Plot[a x,{x,0,1}],{a,0,5}]"), |
70 | 70 | ("numberlineplot", "NumberLinePlot[{1,3,4}]"), |
71 | | - ("parametricplot", "ParametricPlot[{Cos[t],Sin[t]},{t,0,2 Pi}]"), |
| 71 | + ("parametricplot", "ParametricPlot[{t,2 t},{t,0,2}]"), |
72 | 72 | ("piechart", "PieChart[{3,2,5}]"), |
73 | | - ("plot", "Plot[Sin[x], {x, 0, 2 Pi}]"), |
74 | | - ("polarplot", "PolarPlot[1+0.5 Cos[3 θ],{θ,0,2 Pi}]"), |
| 73 | + ("plot", "Plot[x, {x, 0, 1}]"), |
| 74 | + ("polarplot", "PolarPlot[3 θ,{θ,0,2}]"), |
75 | 75 | ] |
76 | 76 |
|
77 | 77 | # vectorized available, non-vectorized not available |
|
84 | 84 |
|
85 | 85 | # both vectorized and non-vectorized available |
86 | 86 | both = [ |
87 | | - ("densityplot", "DensityPlot[Sin[x y],{x,-2,2},{y,-2,2}]"), |
88 | | - ("plot3d", "Plot3D[Sin[x y],{x,-2,2},{y,-2,2}]"), |
| 87 | + ("densityplot", "DensityPlot[x y,{x,-2,2},{y,-2,2}]"), |
| 88 | + ("plot3d", "Plot3D[x y,{x,-2,2},{y,-2,2}]"), |
89 | 89 | ] |
90 | 90 |
|
91 | 91 | # common plotting options to test with and without |
@@ -178,5 +178,5 @@ def run_tests(): |
178 | 178 | except AssertionError: |
179 | 179 | print("FAIL") |
180 | 180 |
|
181 | | - # make_ref_files() |
182 | | - run_tests() |
| 181 | + make_ref_files() |
| 182 | + #run_tests() |
0 commit comments