import pandas as pd
import [Link] as plt
months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
rainfall = [50, 40, 60, 80, 120, 300, 350, 320, 400, 200, 100, 60]
tourists = [5000, 5500, 6000, 7000, 8000, 9000, 8500, 8200, 7800, 7200, 6500, 5800]
data = [Link]({
'Month': months,
'Rainfall (mm)': rainfall,
'Number of Tourists': tourists
})
[Link](data['Rainfall (mm)'], data['Number of Tourists'], color='green')
[Link]('Rainfall vs Tourists in Sikkim')
[Link]('Rainfall (mm)')
[Link]('Number of Tourists')
[Link](True)
[Link]('rainfall_vs_tourists.png') # Saves the plot as an image file
[Link]()