Skip to main content

No project description provided

Project description

Radar plot

This package creates radar plots. It can generate typical radar plots and plot ranges of values.

example 0

Data formatting

Data you want to plot must have a tidy format. For instance, if I wanted to plot three properties (let's say prop1, prop2, and prop3 with values 12, 3.5, and 42 respectively) then you should load a csv file into a pandas dataframe that has the following format:

property value item
prop1 12.0 item1
prop2 3.5 item1
prop3 42 item1

If you wanted to plot several items (e.g., item1, item2, and item3) with different values for the properties, then format the data like this:

property value item
prop1 12.0 item1
prop2 3.5 item1
prop3 42 item1
prop1 14.0 item2
prop2 4.0 item2
prop3 36 item2
prop1 15 item3
prop2 2 item3
prop3 40 item3

Basic Usage

Following that formatting scheme, you can plot the data as follows

import pandas as pd
import matplotlib.pyplot as plt
import radarplt

# see tables above
df = pd.read_csv('example_data.csv')
fig, ax = radarplt.plot(
    df,
    label_column="property",
    value_column="value",
    hue_column="item",
)
legend = ax.legend(loc=(0.9, 0.95))
plt.tight_layout()
plt.show()

Resulting in the following image example 1 plotted

Additional lines are plotted at the .25, .50, and .75 marks on the image. The value at the .25 and .75 line for each property is labeled and values increase/decrease linearly between these points. For instance, the 0.5 mark for property 2 would be 4, the 1 mark would be 6 and the 0 mark would be 2.

Changing Ranges

Let's say you don't like that the prop2 ranges from 1 to 6. To change these value ranges create a dictionary of the ranges you want for each property and pass it to the function via the value_ranges parameter. For instance:

import pandas as pd
import matplotlib.pyplot as plt
import radarplt

value_ranges = {
  "prop1": [0, 20],
  "prop2": [0, 5],
  "prop3": [0, 50],
}

# see tables above
df = pd.read_csv('example_data.csv')
fig, ax = radarplt.plot(
    df,
    label_column="property",
    value_column="value",
    hue_column="item",
    value_ranges=value_ranges,
)
legend = ax.legend(loc=(0.9, 0.95))
plt.tight_layout()
plt.show()

Resulting in the following image example 2 plotted

Changing labels

If you don't want the labels for the properties to be the property names, you can change those as well with the plot_labels parameter.

import pandas as pd
import matplotlib.pyplot as plt
import radarplt

value_ranges = {
  "prop1": [0, 20],
  "prop2": [0, 5],
  "prop3": [0, 50],
}

plot_labels = {
  "prop1": "$\sigma^{2}$",
  "prop2": "Property 2 (seconds)",
  "prop3": "p3"
}

# see tables above
df = pd.read_csv('example_data.csv')
fig, ax = radarplt.plot(
    df,
    label_column="property",
    value_column="value",
    hue_column="item",
    value_ranges=value_ranges,
    plot_labels=plot_labels,
)
legend = ax.legend(loc=(0.9, 0.95))
plt.tight_layout()
plt.show()

Resulting in the following image example 3 plotted

Plotting target ranges

If you want to see if your items' values fall within a certain range, you can add those ranges as well

import pandas as pd
import matplotlib.pyplot as plt
import radarplt

target_ranges = {
  "prop1": [10, 20],
  "prop2": [0, 2],
  "prop3": [25, 35]
}

value_ranges = {
  "prop1": [0, 20],
  "prop2": [0, 5],
  "prop3": [0, 50],
}

plot_labels = {
  "prop1": "$\sigma^{2}$",
  "prop2": "Property 2 (seconds)",
  "prop3": "p3"
}

# see tables above
df = pd.read_csv('example_data.csv')
fig, ax = radarplt.plot(
    df,
    label_column="property",
    value_column="value",
    hue_column="item",
    value_ranges=value_ranges,
    plot_labels=plot_labels,
    target_ranges=target_ranges
)
legend = ax.legend(loc=(0.9, 0.95))
plt.tight_layout()
plt.show()

Resulting in the following image example 4 plotted

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

radarplt-1.0.3.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

radarplt-1.0.3-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file radarplt-1.0.3.tar.gz.

File metadata

  • Download URL: radarplt-1.0.3.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.11.2 Darwin/22.3.0

File hashes

Hashes for radarplt-1.0.3.tar.gz
Algorithm Hash digest
SHA256 33d2a934f80ab6d799c5de9cbc44652a650c858b90bfa5cb1fba485b09ce00cc
MD5 e02759cca31976052743590133a68469
BLAKE2b-256 f98dd51323fe1fe3243dfa3219a3bf75e81d4dee7d15da094a4ba2c2f3d70531

See more details on using hashes here.

File details

Details for the file radarplt-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: radarplt-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.11.2 Darwin/22.3.0

File hashes

Hashes for radarplt-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 cd29b0baa75abb10274f6b353e3575bb5f0d4cf846163f0cff1953ad63b5b23c
MD5 8d9cdc7f78a1f40d0551a3235411c4a7
BLAKE2b-256 8bf962458e54e42908864e4caa65d9bb050e90a750e2f15de01ec035957a42ae

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page