Write a short python code in jupyter notebook using the “tips” dataset from the following URL url- ‘https://raw.github.com/pandas-dev/pandas/master/pandas/tests/data/tips.csv Produce a bar chart that shows the tip rate on a certain week day as shown in the flowing chart. The tip rate is c alculated by dividing the tip by the total_bill Produce ratio column by: tips[‘tip_rate’]-tips[‘tip’1/tips’total_bill’] Use function sns.factorplot to generate the bar
OR
OR