Transient aspects of material existence
Description
The visual representation illustrates the predominant focus on transient aspects of material existence in the absence of spiritual awareness. The pie chart showcases the distribution of emphasis, with a significant portion directed towards material wealth, followed by pleasure and success. This imbalance in priorities contributes to a relentless cycle of desire, acquisition, and fleeting satisfaction, emphasising the need for a broader spiritual perspective to achieve a more balanced and fulfilling life.
Files
Steps to reproduce
import matplotlib.pyplot as plt import numpy as np # Create a pie chart to represent the focus on material aspects labels = ['Material Wealth', 'Pleasure', 'Success'] sizes = [60, 25, 15] colors = ['#ff9999', '#66b3ff', '#99ff99'] fig1, ax1 = plt.subplots() ax1.pie(sizes, colors=colors, labels=labels, autopct='%1.1f%%', startangle=90) ax1.axis('equal') # Equal aspect ratio ensures the pie chart is circular. plt.title('Focus on Transient Aspects of Material Existence') plt.show() ----------------------------- # Second part of the code import matplotlib.pyplot as plt # Data for the pie chart labels = ['Restlessness', 'Anxiety', 'Stress', 'Discontent'] sizes = [30, 25, 20, 25] colors = ['#ff9999', '#66b3ff', '#99ff99', '#ffcc99'] # Create a pie chart fig, ax = plt.subplots() ax.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90, colors=colors) # Draw circle centre_circle = plt.Circle((0,0),0.70,fc='white') fig = plt.gcf() fig.gca().add_artist(centre_circle) # Equal aspect ratio ensures that pie is drawn as a circle ax.axis('equal') plt.tight_layout() # Display the plot plt.title('Practical Impact of Spiritual Unawareness') plt.show()