python
import vex
data = vex.read_csv('data.csv')
cleaned_data = vex.clean_data(data)
chart = vex.LineChart()
chart.set_title('Sales Analysis')
chart.set_x_axis(['Jan', 'Feb', 'Mar', 'Apr', 'May'])
chart.set_y_axis(cleaned_data['sales'])
chart.show()
text = 'Hello, welcome to Vex library!'
processed_text = vex.process_text(text)
print(processed_text)
pip install vex