You're doing great! Now, please complete the entire script by plotting a chart based on the data generated. Here are some highlighted requirements and notes. 

Requirements: 
1. If you find that the generated data is not appropriate while plotting the chart, modify it further as needed. 
2. If there are coordinate axes on the chart, the specific scale on the coordinate axis should be displayed, and specific values should not appear inside the chart, and avoid including complete background stories or too much text in the chart. 
3. Avoid occlusion of visual elements. If necessary, automatically adjust the image layout before `plt.show()` using `tight_layout()`. 
4. If the text in the chart is too long, find a way to make it all visible instead of overlapping. If the title is too long, you can break it into multiple lines. 
5. Once again, be as imaginative and creative as possible in creating the details of the chart. 
6. Above all, double-check to ensure the code works. Reduce unnecessary comments and focus on functionality. 
Most importantly, do not display specific data values in the chart, all values are reflected on the coordinate axis scale 

{note} 
Now, generate your final plotting script in a single python code block.