java實現各種資料統計圖(柱形圖,餅圖,折線圖)
最近在做資料探勘的課程設計,需要將資料分析的結果很直觀的展現給使用者,這就要用到資料統計圖,要實現這個功能就需要幾個第三方包了:
1. jfreechart-1.0.13.jar
2. jcommon-1.0.16.jar
3. gnujaxp.jar
先來看一下,最終效果圖:
主要是jfreechart-1.0.13.jar,但這三個包要齊全,我已經將所有與jfreechart有關的jar包與本文例項的工程(程式碼)一同壓縮上傳了,有興趣的同學可以下載,
下載地址:http://download.csdn.net/detail/pzhtpf/4327700
接下來,我們一步步來實現本程式。
一,前期準備工作,也就把這三個第三方包新增進本文工程,新增過程特別簡單,前面寫過一篇部落格,講的是java如何讀取Excel表格中的資料(有興趣的同學可以看一看:http://blog.csdn.net/pzhtpf/article/details/7506135),也要新增第三方包,新增過程一模一樣,這裡我們在複習一遍:
1, 建,立java專案,在這個專案在建立一個新的資料夾lib;
2, 將上述三個jar包,複製到lib
3,然後右鍵點選這個java專案,選擇Properties
4,在左側列表裡選中Java Build Path,右側選中Libraries
5,點選Add JARs
6, 然後去選擇這個專案中lib資料夾中的三個jar,點選確定
成功後,專案中會多一個資料夾為:Referenced Libraries
二, 實現柱形圖的java程式碼:
- import java.awt.Font;
- import org.jfree.chart.ChartFactory;
- import org.jfree.chart.ChartPanel;
- import org.jfree.chart.JFreeChart;
- import org.jfree.chart.axis.CategoryAxis;
- import org.jfree.chart.axis.ValueAxis;
- import org.jfree.chart.plot.CategoryPlot;
- import org.jfree.chart.plot.PlotOrientation;
- import org.jfree.data.category.CategoryDataset;
- import org.jfree.data.category.DefaultCategoryDataset;
- public class BarChart {
- ChartPanel frame1;
- public BarChart(){
- CategoryDataset dataset = getDataSet();
- JFreeChart chart = ChartFactory.createBarChart3D(
- "水果", // 圖表標題
- "水果種類", // 目錄軸的顯示標籤
- "數量", // 數值軸的顯示標籤
- dataset, // 資料集
- PlotOrientation.VERTICAL, // 圖表方向:水平、垂直
- true, // 是否顯示圖例(對於簡單的柱狀圖必須是false)
- false, // 是否生成工具
- false // 是否生成URL連結
- );
- //從這裡開始
- CategoryPlot plot=chart.getCategoryPlot();//獲取圖表區域物件
- CategoryAxis domainAxis=plot.getDomainAxis(); //水平底部列表
- domainAxis.setLabelFont(new Font("黑體",Font.BOLD,14)); //水平底部標題
- domainAxis.setTickLabelFont(new Font("宋體",Font.BOLD,12)); //垂直標題
- ValueAxis rangeAxis=plot.getRangeAxis();//獲取柱狀
- rangeAxis.setLabelFont(new Font("黑體",Font.BOLD,15));
- chart.getLegend().setItemFont(new Font("黑體", Font.BOLD, 15));
- chart.getTitle().setFont(new Font("宋體",Font.BOLD,20));//設定標題字型
- //到這裡結束,雖然程式碼有點多,但只為一個目的,解決漢字亂碼問題
- frame1=new ChartPanel(chart,true); //這裡也可以用chartFrame,可以直接生成一個獨立的Frame
- }
- private static CategoryDataset getDataSet() {
- DefaultCategoryDataset dataset = new DefaultCategoryDataset();
- dataset.addValue(100, "北京", "蘋果");
- dataset.addValue(100, "上海", "蘋果");
- dataset.addValue(100, "廣州", "蘋果");
- dataset.addValue(200, "北京", "梨子");
- dataset.addValue(200, "上海", "梨子");
- dataset.addValue(200, "廣州", "梨子");
- dataset.addValue(300, "北京", "葡萄");
- dataset.addValue(300, "上海", "葡萄");
- dataset.addValue(300, "廣州", "葡萄");
- dataset.addValue(400, "北京", "香蕉");
- dataset.addValue(400, "上海", "香蕉");
- dataset.addValue(400, "廣州", "香蕉");
- dataset.addValue(500, "北京", "荔枝");
- dataset.addValue(500, "上海", "荔枝");
- dataset.addValue(500, "廣州", "荔枝");
- return dataset;
- }
- public ChartPanel getChartPanel(){
- return frame1;
- }
- }
效果圖如下:
但我們把private static CategoryDataset getDataSet(){}方法中的資料變化一下後,又會形成另一種效果,比如說我們改成:
- private static CategoryDataset getDataSet() {
- DefaultCategoryDataset dataset = new DefaultCategoryDataset();
- dataset.addValue(100, "蘋果", "蘋果");
- dataset.addValue(200, "梨子", "梨子");
- dataset.addValue(300, "葡萄", "葡萄");
- dataset.addValue(400, "香蕉", "香蕉");
- dataset.addValue(500, "荔枝", "荔枝");
- return dataset;
- }
效果圖如下:
三, 實現餅狀圖的java程式碼:
- package com.njue.testJFreeChart;
- import java.awt.Font;
- import java.text.DecimalFormat;
- import java.text.NumberFormat;
- import javax.swing.JPanel;
- import org.jfree.chart.ChartFactory;
- import org.jfree.chart.ChartPanel;
- import org.jfree.chart.JFreeChart;
- import org.jfree.chart.labels.StandardPieSectionLabelGenerator;
- import org.jfree.chart.plot.PiePlot;
- import org.jfree.data.general.DefaultPieDataset;
- public class PieChart {
- ChartPanel frame1;
- public PieChart(){
- DefaultPieDataset data = getDataSet();
- JFreeChart chart = ChartFactory.createPieChart3D("水果產量",data,true,false,false);
- //設定百分比
- PiePlot pieplot = (PiePlot) chart.getPlot();
- DecimalFormat df = new DecimalFormat("0.00%");//獲得一個DecimalFormat物件,主要是設定小數問題
- NumberFormat nf = NumberFormat.getNumberInstance();//獲得一個NumberFormat物件
- StandardPieSectionLabelGenerator sp1 = new StandardPieSectionLabelGenerator("{0} {2}", nf, df);//獲得StandardPieSectionLabelGenerator物件
- pieplot.setLabelGenerator(sp1);//設定餅圖顯示百分比
- //沒有資料的時候顯示的內容
- pieplot.setNoDataMessage("無資料顯示");
- pieplot.setCircular(false);
- pieplot.setLabelGap(0.02D);
- pieplot.setIgnoreNullValues(true);//設定不顯示空值
- pieplot.setIgnoreZeroValues(true);//設定不顯示負值
- frame1=new ChartPanel (chart,true);
- chart.getTitle().setFont(new Font("宋體",Font.BOLD,20));//設定標題字型
- PiePlot piePlot= (PiePlot) chart.getPlot();//獲取圖表區域物件
- piePlot.setLabelFont(new Font("宋體",Font.BOLD,10));//解決亂碼
- chart.getLegend().setItemFont(new Font("黑體",Font.BOLD,10));
- }
- private static DefaultPieDataset getDataSet() {
- DefaultPieDataset dataset = new DefaultPieDataset();
- dataset.setValue("蘋果",100);
- dataset.setValue("梨子",200);
- dataset.setValue("葡萄",300);
- dataset.setValue("香蕉",400);
- dataset.setValue("荔枝",500);
- return dataset;
- }
- public ChartPanel getChartPanel(){
- return frame1;
- }
- }
效果圖如下:
四, 實現折線圖的java程式碼:
- package com.njue.testJFreeChart;
- import java.awt.Font;
- import java.text.SimpleDateFormat;
- import org.jfree.chart.ChartFactory;
- import org.jfree.chart.ChartPanel;
- import org.jfree.chart.JFreeChart;
- import org.jfree.chart.axis.DateAxis;
- import org.jfree.chart.axis.ValueAxis;
- import org.jfree.chart.plot.XYPlot;
- import org.jfree.data.time.Month;
- import org.jfree.data.time.TimeSeries;
- import org.jfree.data.time.TimeSeriesCollection;
- import org.jfree.data.xy.XYDataset;
- public class TimeSeriesChart {
- ChartPanel frame1;
- public TimeSeriesChart(){
- XYDataset xydataset = createDataset();
- JFreeChart jfreechart = ChartFactory.createTimeSeriesChart("Legal & General單位信托基金價格", "日期", "價格",xydataset, true, true, true);
- XYPlot xyplot = (XYPlot) jfreechart.getPlot();
- DateAxis dateaxis = (DateAxis) xyplot.getDomainAxis();
- dateaxis.setDateFormatOverride(new SimpleDateFormat("MMM-yyyy"));
- frame1=new ChartPanel(jfreechart,true);
- dateaxis.setLabelFont(new Font("黑體",Font.BOLD,14)); //水平底部標題
- dateaxis.setTickLabelFont(new Font("宋體",Font.BOLD,12)); //垂直標題
- ValueAxis rangeAxis=xyplot.getRangeAxis();//獲取柱狀
- rangeAxis.setLabelFont(new Font("黑體",Font.BOLD,15));
- jfreechart.getLegend().setItemFont(new Font("黑體", Font.BOLD, 15));
- jfreechart.getTitle().setFont(new Font("宋體",Font.BOLD,20));//設定標題字型
- }
- private static XYDataset createDataset() { //這個資料集有點多,但都不難理解
- TimeSeries timeseries = new TimeSeries("legal & general歐洲指數信任",
- org.jfree.data.time.Month.class);
- timeseries.add(new Month(2, 2001), 181.80000000000001D);
- timeseries.add(new Month(3, 2001), 167.30000000000001D);
- timeseries.add(new Month(4, 2001), 153.80000000000001D);
- timeseries.add(new Month(5, 2001), 167.59999999999999D);
- timeseries.add(new Month(6, 2001), 158.80000000000001D);
- timeseries.add(new Month(7, 2001), 148.30000000000001D);
- timeseries.add(new Month(8, 2001), 153.90000000000001D);
- timeseries.add(new Month(9, 2001), 142.69999999999999D);
- timeseries.add(new Month(10, 2001), 123.2D);
- timeseries.add(new Month(11, 2001), 131.80000000000001D);
- timeseries.add(new Month(12, 2001), 139.59999999999999D);
- timeseries.add(new Month(1, 2002), 142.90000000000001D);
- timeseries.add(new Month(2, 2002), 138.69999999999999D);
- timeseries.add(new Month(3, 2002), 137.30000000000001D);
- timeseries.add(new Month(4, 2002), 143.90000000000001D);
- timeseries.add(new Month(5, 2002), 139.80000000000001D);
- timeseries.add(new Month(6, 2002), 137D);
- timeseries.add(new Month(7, 2002), 132.80000000000001D);
- TimeSeries timeseries1 = new TimeSeries("legal & general英國指數信任",
- org.jfree.data.time.Month.class);
- timeseries1.add(new Month(2, 2001), 129.59999999999999D);
- timeseries1.add(new Month(3, 2001), 123.2D);
- timeseries1.add(new Month(4, 2001), 117.2D);
- timeseries1.add(new Month(5, 2001), 124.09999999999999D);
- timeseries1.add(new Month(6, 2001), 122.59999999999999D);
- timeseries1.add(new Month(7, 2001), 119.2D);
- timeseries1.add(new Month(8, 2001), 116.5D);
- timeseries1.add(new Month(9, 2001), 112.7D);
- timeseries1.add(new Month(10, 2001), 101.5D);
- timeseries1.add(new Month(11, 2001), 106.09999999999999D);
- timeseries1.add(new Month(12, 2001), 110.3D);
- timeseries1.add(new Month(1, 2002), 111.7D);
- timeseries1.add(new Month(2, 2002), 111D);
- timeseries1.add(new Month(3, 2002), 109.59999999999999D);
- timeseries1.add(new Month(4, 2002), 113.2D);
- timeseries1.add(new Month(5, 2002), 111.59999999999999D);
- timeseries1.add(new Month(6, 2002), 108.8D);
- timeseries1.add(new Month(7, 2002), 101.59999999999999D);
- TimeSeriesCollection timeseriescollection = new TimeSeriesCollection();
- timeseriescollection.addSeries(timeseries);
- timeseriescollection.addSeries(timeseries1);
- return timeseriescollection;
- }
- public ChartPanel getChartPanel(){
- return frame1;
- }
- }
效果圖如下:
再來看一下主方法:
- import java.awt.GridLayout;
- import javax.swing.JFrame;
- public class mainClass {
- public static void main(String args[]){
- JFrame frame=new JFrame("Java資料統計圖");
- frame.setLayout(new GridLayout(2,2,10,10));
- frame.add(new BarChart().getChartPanel()); //新增柱形圖
- frame.add(new BarChart1().getChartPanel()); //新增柱形圖的另一種效果
- frame.add(new PieChart().getChartPanel()); //新增餅狀圖
- frame.add(new TimeSeriesChart().getChartPanel()); //新增折線圖
- frame.setBounds(50, 50, 800, 600);
- frame.setVisible(true);
- }
- }
五, 總結
以上都是一個簡單的例子去實現了,想了解更深的同學可自行查詢資料,其實以上程式碼都通俗易懂,只要結合自己的實際情況,便可開發出屬於自己的Application,大家可以看出我這裡是在Application上實現的,其實更多情況資料統計圖在javaweb上應用更多,大家也可自行了解。
ps:如執行本文工程專案是出現錯誤,請參考博文:http://blog.csdn.net/pzhtpf/article/details/7506135
相關文章
- Android 折線圖之hellocharts (餅狀圖)餅圖Android
- Tableau——資料前處理、折線圖、餅圖(環形圖)
- PHP 生成折線圖和餅圖等PHP
- 用Python生成柱狀圖、折線圖、餅狀圖來統計自己的手機話費Python
- pandas讀取csv檔案資料並使用matplotlib畫折線圖和餅圖
- echart 各種圖實現
- 資料視覺化圖表之折線圖視覺化
- Echarts資料視覺化:圖表篇(2)—— 折線圖、堆疊面積折線圖Echarts視覺化
- ECHARTS-折線圖不顯示資料 控制折線圖顏色Echarts
- Flutter 實現平滑曲線折線圖Flutter
- echarts 餅圖巢狀 二級餅圖 子餅圖 複合餅圖Echarts巢狀
- 微信小程式折線圖表折線圖加區域圖微信小程式
- [資料庫][SQL]圖解各種連線join資料庫SQL圖解
- MVC實現EChatrs動態折線圖MVC
- R : 折線圖
- echarts - 折線圖Echarts
- echarts折線圖Echarts
- Python畫圖——matplotlib(普通折線圖)Python
- 餅圖
- echarts 折線圖拼接Echarts
- matlab畫折線圖Matlab
- 【matplotlib 實戰】--餅圖
- echarts間隔餅圖實現方法Echarts
- WPF實現統計圖
- excel折線圖自定x軸y軸 excel折線圖xy設定Excel
- 餅圖0625
- amCharts粒狀梯度柱形圖梯度
- Matplotlib 繪製折線圖
- PyQtGraph繪製折線圖QT
- AnyChart繪製折線圖
- MATLAB 繪製折線圖Matlab
- 柱狀圖、直方圖、散點圖、餅圖講解直方圖
- amCharts繪製折線圖和柱狀圖混合
- 微信小程式(JAVAScript)實現餅圖微信小程式JavaScript
- 極簡PPT製作之如何插入Excel柱形圖表及美化柱形圖表Excel
- python-資料分析-Matplotlib-1-基礎圖形(曲線圖-散點-柱狀-堆疊柱狀-餅狀圖-直方圖)Python直方圖
- Java 在Excel中新增分離型餅圖、環形圖JavaExcel
- Highcharts+PHP+Mysql生成餅狀統計圖PHPMySql
- Python視覺化-折線圖Python視覺化