DEV Community

Cover image for πŸš€ Day 33 of My Data Analytics Journey !
Ramya .C
Ramya .C

Posted on

πŸš€ Day 33 of My Data Analytics Journey !

Today I continued my learning path in Data Analytics and explored some new concepts:

Learned how to load data from multiple sources.

Got a basic introduction to AWS and its importance in handling data on the cloud.

Practiced how to show images in Python using Matplotlib.

Learned how to read files in Python for data processing.

Every new concept is adding to my confidence, and I’m enjoying this step-by-step growth! πŸ’‘

Here’s a small Python snippet I practiced with Matplotlib:

import matplotlib.pyplot as plt
import matplotlib.image as mpimg

Read and display an image

img = mpimg.imread('example.jpg')
plt.imshow(img)
plt.axis('off') # Hide axis
plt.show()

πŸ”‘ Takeaway: Data comes from multiple places, and learning how to handle it is a key skill in analytics.

DataAnalytics #Python #AWS #Matplotlib #LearningJourney

Top comments (0)