clear all;
close all;

[A, C, B] = textread('Ozone_NJ.txt','%d\t%d\t%d','headerlines',1);

boxplot(A,B);
title('Ozone Levels by Month');
xlabel('Month');
ylabel('Ozone');
%set(gca,'YScale','log');
