Python Radar Charts (AKA - Spider Charts, Star Charts)

Поділитися
Вставка
  • Опубліковано 17 жов 2024

КОМЕНТАРІ • 8

  • @RyanNoonan
    @RyanNoonan  2 роки тому +2

    IMPORTANT NOTE:
    If Receiving Error for Matplotlib Radar Chart: ValueError: The number of FixedLocator locations (6), usually from a call to set_ticks, does not match the number of ticklabels (5).
    A simple work around fix is to add the first item in the categories list to the list again at the end. Like this:
    # data
    categories = ['Fuel Economy', 'Reliability', 'Comfort', 'Design', 'Repair Costs', 'Fuel Economy']
    I will also look for other/better solutions but for now this seems to fix the error. Also I will try to eventually add an example of how to create a radar chart with plotly to GitHub along with the existing examples.

  • @Delucarecas
    @Delucarecas 3 роки тому +1

    Awesome tutorial, many thanks!!

  • @canaldoxerxes
    @canaldoxerxes 3 роки тому +1

    Basically, Pygal does the heavy lifting.

  • @sudhiirreddy7868
    @sudhiirreddy7868 2 роки тому +1

    Thanks man

  • @omniscienceisdead8837
    @omniscienceisdead8837 3 роки тому +1

    thanks, helped alot