I would be grateful if anyone could help me by providing me the code snippet on how to connect multiple .csv files to a single project in C# so that i cam implement an algorithm on these files in order to retrieve overall top-k (k is the user input) records from these files after sorting and ranking data in each file.
Asked
Active
Viewed 37 times
0
-
2What have you tried so far? What does your data look like? What are you going to sort and rank from the data? – cbr Mar 05 '15 at 07:30
-
The data consists of various attributes like pressure, humidity,temp,speed etc. The data is taken from Shipboard Automated Meteorological Oceanographic System. The data is downloaded for three months and each file was in .nc format. I converted it to csv files. Now i need to connect these separate csv files to c# and implement an algorithm on this data. Each csv file consist of so many rows of data (readings of each day of a month) – Swathi Surendranath Mar 05 '15 at 08:48
-
[**Parsing CSV files in C#**](http://stackoverflow.com/questions/2081418/parsing-csv-files-in-c-sharp) – cbr Mar 05 '15 at 08:53