Skip to content

Instantly share code, notes, and snippets.

@timhoffm
timhoffm / visualization_tools.md
Last active September 4, 2019 09:27
Visualization Tools

Python visualization tools

Maintainers track

Informal sesson intended for discussions among contributors.

Who are you and what is your interest in visualization?

@timhoffm
timhoffm / matplotlib_labels.md
Last active July 16, 2019 21:42
Matplotlilb labels
  • Animation
  • API Changes
  • API consistency
  • Argument Checking
  • backend/agg
  • backend/cairo
  • backend/pdf
  • backend/pgf
  • backend/ps
  • backend/svg
@timhoffm
timhoffm / config_system.md
Last active December 6, 2022 10:04
Config system

Requirements

  • access config['axes.xticks.color'] and config.axes.xticks.color. Which one is the preferred? Or both?
  • validators
  • default values? resetting?
  • virtual or real hierarchy: Is the structure only naming convention or do we want to define explicit structure components?
  • support aliases, possibility for deprecated aliases
  • simple layering of configs (ChainMap-like?)
  • Definition of values should be explicit (e.g. ArgumentParser-style)
    config.add_param('lines.width', type=float, description="The width of all lines in points")