File:Parachute injuries.svg
Summary
| Description |
English: Percentage of different parachute injuries caused by improper landing position. |
| Date | |
| Source | Own work |
| Author | Nicoguaro |
| SVG development | |
| Source code | Python codeimport 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:
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.