我有一个dataframe DF
我接受了以下行的子集:
A <- dplyr::filter(DF, months %in% c("Jan", "Feb"))
例如,。
然后我想采用原始DF
的补充,DF
中的所有内容都不在A
中。
我尝试DF[-A, ]
,但这会引发错误。
答案 0 :(得分:1)
最简单的是:
switch ((string)value)
{
case "char1":
return new SolidColorBrush(Colors.WhiteSmoke);
case "char2":
return new SolidColorBrush(Colors.Red);
default:
return new SolidColorBrush(Colors.White);
}