I'm trying to import CSV file with the following format:
20150803 00:00:01.649,1.09675,1.09678 using this code:
Import[filename, "DateStringFormat" -> {"Year", "Month", "Day", " ", "Hour", ":", "Minute", ":", "Second", ".", "Millisecond"}] But this does not import Time part - it only imports the Date:
{{DateObject[{2015, 8, 4}], 1.09675, 1.09682}, {DateObject[{2015, 8, 3}], 1.09675, 1.09678}, ... How can I import all of the information from my file?