我有一个这样的数据表。
我想对它执行许多操作,比如
- 有多少次是在阳光明媚的时候PLAY 'no'
- 当 PLAY 是“是”时,WINDY 有多少次是“真的”
我应该使用什么数据结构?现在我有一个简单的数组,这将是一项需要控制的任务。
string[,] trainingData = new string[noOfRecords,5];
using (TextReader reader = File.OpenText("input.txt"))
{
int i =0;
string text = "";
while ((text = reader.ReadLine()) != null)
{
string[] bits = text.Split(' ');
for (int j = 0; j < noOfColumnsOfData; j++)
{
trainingData[i, j] = bits[j];
}
i++;
}
}