function f = createOverviewPlot(data, sortedDataFile, i)
    figure('Name', sortedDataFile(i).name, 'NumberTitle', 'off')
    subplot(3,2,1)
    yyaxis right
    plot(data{i}.dtLV, data{i}.pressureDBar)
    ylabel("Pressure (dBar)")
    yyaxis left
    plot(data{i}.dtLV, data{i}.thermTemp, data{i}.dtLV, data{i}.bathTemp, data{i}.dtLV, data{i}.housingTemp)
    ylabel("Temperature (degC)")
    legend(["Thermistor Temp" "Bath Temp" " Housing Temp" "Pressure"]);
    title("Pressure, Temperature vs Time");

    subplot(3,2,2)
    pRate{i} = (data{i}.pressureDBar(2:end) - data{i}.pressureDBar(1:end-1))./seconds(data{i}.dtLV(2:end) - data{i}.dtLV(1:end-1));
    plot(data{i}.dtLV(2:end), pRate{i})
    title("Pressurization Rate vs. Time");
    ylabel("Pressurization Rate (dBar/sec)")

    %% Plot sensor data vs time
    subplot(3,2,3)
    title("Vrs and Vrs Std Dev vs Time");
    yyaxis left
    plot(data{i}.dtLV, data{i}.vrsVolts)
    ylabel("Vrs (volts)");
    yyaxis right
    plot(data{i}.dtLV, data{i}.vrsStdDev)
    ylim([0 0.001]);
    ylabel("Vrs Std Dev (volts)");

    subplot(3,2,4)
    title("Vk and Vk Std Dev vs Time");
    yyaxis left
    plot(data{i}.dtLV, data{i}.vkVolts)
    ylabel("Vk (volts)");
    yyaxis right
    plot(data{i}.dtLV, data{i}.vkStdDev)
    ylim([0 0.001]);
    ylabel("Vk Std Dev (volts)");

    subplot(3,2,5)
    title("Ik and Ib vs Time");
    yyaxis left
    plot(data{i}.dtLV, data{i}.ikAmps)
    ylabel("Ik (amps)");
    yyaxis right
    plot(data{i}.dtLV, data{i}.ibAmps)
    ylabel("Ib (amps)");
end
