使用如下数据框df
----------------------
a | b | c
------+-------+-------
true | true | true
false | true | false
false | false | false
true | true | false
我需要为每个列a,b和c找到"true"
的%作为数据框,以便可以在ggplot中使用它。怎么去呢?
注意: - "true"
不是逻辑TRUE
答案 0 :(得分:4)
我们使用public class FullMapScreenTest {
private FullMapScreen mapScreen ;
private Place place ;
// 30.050922, 31.243414
// 30.050976, 31.243494
@Before
public void setUp() throws Exception {
place = new Place(30.050922 , 31.243414) ;
}
@After
public void tearDown() throws Exception {
}
@Test(expected = NullPointerException.class)
public void calculateDistance() throws Exception {
/// 30.054291, 31.242572
double destLat = 30.054291 ;
double desLang = 31.242572 ;
double actualDistance = 100.00;
Place distanation = new Place(destLat ,desLang) ;
Assert.assertEquals(mapScreen.calculateDistance(distanation) ,actualDistance);
}
}
重新设置'广泛'到'长'格式,然后根据每个'组'找到'{1}}'真'',然后使用gather
做一个吧积
mean
注意:假设列为geom_bar
class