David,
Thanks for getting back to me on this. Here is what I have run and gotten in return:
In[25]:= path = "C:\Users\User\Desktop\TestDataNov2013.csv"
Out[25]= "C:\Users\User\Desktop\TestDataNov2013.csv"
In[32]:= data = Rest@Import[path]; data =
data /. {dstring, tstring, z_} :> {DateList[d <> ":" <> t], z}
Out[32]=
{{"11/4/2013", "9:05:45", 80.75, 9.4},
{"11/4/2013", "11:06:21", 78.09, 9.4},
{"11/4/2013", "12:40:52", 76.9, 9.7},
{"11/4/2013", "15:02:47", 74.27, 9.6},
{"11/4/2013", "15:43:46", 75.16, 10.}, etc.
This looks a lot like what I get when I simply import the *.csv:
In[38]:= myDate = Import[path]
Out[38]= {{"?Date?", "?Time?", "?Temperature?", "?Flow Rate?"},
{"11/4/2013", "9:05:45", 80.75, 9.4},
{"11/4/2013", "11:06:21", 78.09, 9.4},
{"11/4/2013", "12:40:52", 76.9, 9.7},
{"11/4/2013", "15:02:47", 74.27, 9.6},
{"11/4/2013", "15:43:46", 75.16, 10.}, etc.
What I think I'm trying to get to is:
{{y, m, d, h, m, s}, temperature, flowrate}
where the date and time are combined into a format that Mathematica can use for making plots of data.
I'm still missing something.