计算变量并将R中的另一个计数到特定表

时间:2015-12-06 16:12:44

标签: r

我不是英语本地人,所以请耐心等待我的英语:))

我有一个简单的问题,但无法找到任何解决方案。

想象一下像这样的表年:

#Day #Month  #Type of a day
 1     1      monday
 2     1      thuesday
 3     1      wednesday
 ...   ...    ...
 25    1      monday    
 ...   ...    ...
 1     2      monday
 ...   ...    ...

我需要在此表中使用另一列名为D的列,其中应按月份分组星期一,星期二等。但桌子的结构必须相同。像这样:

#Day #Month  #Type of day  #D
 1     1      monday         4  #(there is 4 monday's in this month)
 2     1      thuesday       5  #(there is 5 thuesday's in this month)
 3     1      wednesday      4
 ...   ...    ...            ...
 25    1      monday         4
 ...   ...    ...            ...
 1     2      monday         5
 ...   ...    ...            ...

例如:采取星期一,因此在每一行中,星期一在哪里,例如1月(月= 1),应该在1月份的星期一列D中。周二,......以及每个月都一样。

问题是我不想使用data.frame,因为我需要它进入这个特定的表年,其中的所有值都没有任何变化。整个表格如下:Year。这是一种捷克语,所以' Den' = Day,' Mesic' =月,' Typ' =一天的类型。其他变量不应该对你很重要,所以我不会在那里解释它们。

你能帮帮我吗? :-)

0 个答案:

没有答案