在处理中加载Excel数据集并使用它来绘制球体

时间:2017-01-15 18:48:58

标签: processing

我是初学者,想知道如何使用小型数据集处理球体。有点像饼图,但在球体中。我能够加载数据集。使用产品创建球体,这样您就可以使用10个分布或使用类别来总结类别并创建3个发行版。提前致谢。 数据:

产品销售类别 1 7353784 1 2 745551 1 3 145702 1 4 547905 2 5 201991 3 6 88669 2 7 48909 2 8 36361 2 9 141726 2 10 1877020 3 11 374020 3

Table table;
void setup(){
table = loadTable("HW 1 Data.csv", "header");

println(table.getRowCount() + " total rows in table");

for (TableRow row : table.rows()) {
    int product = row.getInt("Product");
    int sales = row.getInt("Sales");
    int category = row.getInt("Category");

    println(product + " (category " + category + ") has total sales of " + sales);

} }

0 个答案:

没有答案