在R语言中,茎叶图可通过以下哪个函数实现
A: graphics::stem()
B: graphics::barplot()
C: graphics::boxplot()
D: graphics::hist()
A: graphics::stem()
B: graphics::barplot()
C: graphics::boxplot()
D: graphics::hist()
举一反三
- 以下哪些方式能获得Graphics对象obj? A: Graphics obj = 窗体或控件名.CreateGraphics(); B: private void 窗体或控件名_Paint(object sender, PaintEventArgs e){ Graphics obj = e. Graphics;} C: Bitmap map = new Bitmap(宽,高);Graphics obj = Graphics.FromImage(map);obj.DrawImage(map, x坐标, y坐标); D: Graphics obj = new Graphics(宽,高);
- 类Graphics在包Package1中,另一个包中的程序需要创建一个Graphics类实例,则Graphics类应声明为________
- 在JAVA语言中,下列语句( )可以画出一矩形框架,其距左边界为0像素,距上边界为10像素,宽为30像素,高为40像素。 A: Graphics g;g.drawRect(10,0,30,40); B: Graphics g;g.drawRect(0,10,30,40); C: Graphics g;g.drawRect(30,40,10, 0); D: Graphics g;g.drawRect(30,40,0,10);
- 类Graphics在包Package1中,另一个包中的程序需要创建一个Graphics类实例,则Graphics类应声明为________。 A: protected B: private C: 默认 D: public
- 以下哪个函数可以做饼图( )。 A: barplot( ) B: hist( ) C: pie( ) D: boxplot()