国 汽车 死亡 人口
1 比利时 467 112 10396 2 捷克共和国 373 135 10212 3 丹麦 354 68 5398 4 德国 546 71 82532 五 爱沙尼亚 350 126 1351 6 希腊 348 147 11041 7 西班牙 454 112 42345 8 法国 491 92 59901 9 爱尔兰 385 94 4028 10 意大利 581 97 57888 11 塞浦路斯 448 160 730 12 拉脱维亚 297 222 2319 13 立陶宛 384 218 3446 14 卢森堡 659 109 452 15 匈牙利 280 128 10117 16 马耳他 525 33 400 17 荷兰 429 49 16258 18 奥地利 501 108 8114 19 波兰 314 150 38191 20 葡萄牙 572 124 10475 21 斯洛文尼亚 456 137 1996年 22 斯洛伐克 222 112 5380 23 芬兰 448 72 5220 24 瑞典 456 53 8976 25 英国 463 56 59652
我继续输入以下声明,并声明" x"必须是数字,我不知道为什么!
hist(汽车,ylab =" Frecuencia por paises",xlab =" Automoviles por mil habitantes",main =" Histograma de automoviles por cada 1000 habitates" ,ylim = c(0,10),col =(" magenta"))
答案 0 :(得分:0)
定义您的数据集(例如df)
private void assertTrue(boolean condition, ArgumentExceptions exception) {
if (!condition) {
throw new IllegalArgumentException(exception.getValue());
}
}
......其他争论
你也可以试试ggplot以获得更好的可视化效果
public void someMethod() {
int initialBalance = -2;
int amount = 3;
int withdraw = 5;
assertTrue(initialBalance < 0, ArgumentExceptions.NEGATIVE_INITIAL_BALANCE);
assertTrue(amount < 0, ArgumentExceptions.NEGATIVE_DEPOSIT);
assertTrue(withdraw < 0, ArgumentExceptions.ILLEGAL_WITHDRAW);
}