fast.mplstyle 288 B

1234567891011
  1. # a small set of changes that will make your plotting FAST (1).
  2. #
  3. # (1) in some cases
  4. # Maximally simplify lines.
  5. path.simplify: True
  6. path.simplify_threshold: 1.0
  7. # chunk up large lines into smaller lines!
  8. # simple trick to avoid those pesky O(>n) algorithms!
  9. agg.path.chunksize: 10000