Parachute_injuries.svg


Summary

Description
English: Percentage of different parachute injuries caused by improper landing position.
Date
Source Own work
Author Nicoguaro
SVG development
InfoField
The SVG code is valid .
This plot was created with Matplotlib .
Source code
InfoField

Python code

import matplotlib.pyplot as plt

gray = '#757575'
plt.rcParams["text.color"] = gray
plt.rcParams["font.size"] = 10
plt.rcParams["xtick.color"] = gray
plt.rcParams["ytick.color"] = gray
plt.rcParams["axes.labelcolor"] = gray
plt.rcParams["axes.edgecolor"] = gray
plt.rcParams["axes.spines.right"] = False
plt.rcParams["axes.spines.top"] = False
plt.rcParams["axes.spines.left"] = False
plt.rcParams["axes.spines.bottom"] = False

labels = ['Ankle', 'Wrist', 'Hand/Arm', 'Back/Spine', 'Calf', 'Knees', 'Foot',
          'Pelvis', 'Thigh']
sizes = [54, 18, 5, 5 ,5, 5, 4, 2, 2]

fig = plt.figure(figsize=(5, 3))
plt.barh(range(9, 0, -1), sizes, tick_label=labels)
for cont in range(9):
    plt.text(sizes[cont] + 0.5, 9 - cont, "{} %".format(sizes[cont]),
             verticalalignment="center")

plt.title("Injuries caused by improper landing position",
          color="black", loc="left")
plt.xticks([])
plt.tight_layout()
plt.show()
plt.savefig("parachute_injuries.svg", bbox_inches="tight")

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution
This file is licensed under the Creative Commons Attribution 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

23 July 2018