From c4d4bc5cd551b636a89b69033fbd996ca5ba2cc8 Mon Sep 17 00:00:00 2001 From: Navdeep Gill Date: Thu, 3 Mar 2016 11:04:24 -0800 Subject: [PATCH] Convert to as.Date() for time series plot --- scripts/getDataMySQL.R | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/getDataMySQL.R b/scripts/getDataMySQL.R index 8c68533e65b5..59c8c4374bda 100644 --- a/scripts/getDataMySQL.R +++ b/scripts/getDataMySQL.R @@ -112,3 +112,4 @@ master_os_failures = dbSendQuery(mr_unit, "SELECT date as Date, os as OS, #Send query to a dataframe master_os_failures = fetch(master_os_failures, n = -1) +master_os_failures$Date = as.Date(master_os_failures$Date)