sCSV <- ofDataFileCSV()
hiFreq <- read_CATcsv(sCSV)
df <- hiFreq$data
if (suppressMessages(suppressWarnings(require("ggplot2"))))
{
g <- ggplot(df, aes(seq_len(NROW(df)))) + geom_line(aes(y=RawPlayerLoad)) + labs(x = "ticks (cs)", y = "Smoothed PL")
plot(g)
}