gpt4 book ai didi

javascript - Google 可视化仪表板错误

转载 作者:行者123 更新时间:2023-11-28 05:15:36 28 4
gpt4 key购买 nike

我正在尝试使用 Google 可视化工具创建仪表板,但遇到了一些问题。

我引入全是文本的数据,并通过在 ChartWrapper 中设置 calc 属性来动态计算图表数据,当数据表准备就绪时,我调用一个函数来设置图表的 View 。完整代码如下。

我遇到的问题是:

  1. 当我使用控件筛选表时出现无效行索引错误。一旦设置 View 并重新绘制图表,这些问题就会消失,但“一个或多个参与者未能绘制()”错误仍然存​​在。
  2. 图表在首次加载时设置 View 之前显示原始数据。
  3. 我返回带有数字的文本数据(即“1.男性”),因此列排序正确,但我不想在图表中看到数字。关于如何清理标签有什么想法吗?

任何帮助将不胜感激。如果您对处理此类数据的更好方法有任何建议,我会洗耳恭听。

我创建了一个 fiddle :https://jsfiddle.net/kq8fcdee/1/

完整代码:

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

<style>
#table_div{display:none;}
.chart_div{display:inline-block;border:1px solid #888;margin-right:10px;}
</style>

</head>
<body>

<!--Div that will hold the dashboard-->
<div id="dashboard_div">
<!--Divs that will hold each control and chart-->
<div id="filter_div"></div>
<div id="table_div"></div>
</div>


<script>

var data=
[
["Gender","Last time","Origin\/transfer","How arrived","Reason for flight","Section","Shop concessions","Purchase merchandise","Purchase services","Connect to WIFI","Overall experience","Country","Age group","Zip code","Education","Employment Status","Employment Status Group","Household income","Hispanic","Race","2. Children"],
["1. Male","3. 1-2 years","1. Starting","8. Other","3. Other","1. First\/Business","1. Yes","2. No","1. Yes","2. No","4. Very good","2. Other","5. 45-54",75201,"5. College degree","4. Student","2. Not Employed","4. 100k - 150k","1. Yes","4. Native American \/ American Indian","1. No children"],
["2. Female","2. 6-12 months","2. Connection","1. Drove self","1. Business","1. First\/Business","2. No","1. Yes","1. Yes","1. Yes","4. Very good","1. USA","3. 26-34",32003,"4. Some college","2. Part-time","1. Employed","2. 40k - 75k","1. Yes","2. Black \/ African American","1. No children"],
["1. Male","2. 6-12 months","2. Connection","5.R ental","2. Leisure","2. Economy\/Coach","1. Yes","2. No","1. Yes","2. No","4. Very good","1. USA","5. 45-54",64101,"4. Some college","5. Homemaker","2. Not Employed","5. 150k+","1. Yes","5. Other","1. No children"],
["2. Female","2. 6-12 months","2. Connection","1. Drove self","2. Leisure","1. First\/Business","2. No","2. No","1. Yes","2. No","4. Very good","1. USA","5. 45-54",75201,"2. Some HS","4. Student","2. Not Employed","4. 100k - 150k","2. No","4. Native American \/ American Indian","Children"],
["2. Female","2. 6-12 months","2. Connection","5.R ental","2. Leisure","2. Economy\/Coach","1. Yes","2. No","1. Yes","2. No","4. Very good","1. USA","2. 22-25",84101,"4. Some college","4. Student","2. Not Employed","4. 100k - 150k","1. Yes","4. Native American \/ American Indian","1. No children"],
["2. Female","5. 3+ years","1. Starting","4. Bus\/shuttle","2. Leisure","1. First\/Business","2. No","2. No","2. No","1. Yes","4. Very good","2. Other","3. 26-34",32003,"5. College degree","6. Unemployed not looking","2. Not Employed","6. Refused","2. No",null,"1. No children"],
["2. Female","4. 2-3 years","1. Starting","8. Other","3. Other","2. Economy\/Coach","2. No","2. No","2. No","2. No","1. Poor","2. Other","6. 55-64",99501,"4. Some college","3. Retired","2. Not Employed","3. 75k - 100k","2. No","3. Asian","1. No children"],
["2. Female","5. 3+ years","1. Starting","5.R ental","3. Other","1. First\/Business","2. No","1. Yes","2. No","1. Yes","1. Poor","1. USA","1. 16-21",15668,"4. Some college","1. Full-time","1. Employed","1. < 40k","2. No","1. White \/ Caucasian","1. No children"]
];


var proc = function(){
//get the data from the server (php that gets data from mysql and reruns json array
//$.getJSON('getdata.php',function(data) {

//load the library
google.charts.load('current', {'packages':['corechart', 'controls']});

//function that is called when libary loaded
google.charts.setOnLoadCallback(function() {

nCols=data[0].length;
charts=[];
data = google.visualization.arrayToDataTable(data);
dashboard = new google.visualization.Dashboard(document.getElementById('dashboard_div'));

//create Gender filter
var genderSelection = new google.visualization.ControlWrapper({
'controlType': 'CategoryFilter',
'containerId': 'filter_div',
'options': {
'filterColumnLabel': 'Gender',
}
});

//create the table
var table = new google.visualization.ChartWrapper({
'chartType': 'Table',
'dataTable':data,
'containerId': 'table_div',
'options': {'width': '800px'}
});

//create the charts (one chart for each column in the table)
for(qidx=0;qidx < nCols;qidx++) {

var createChart = function(qidx) {

//add place for chart
$('#dashboard_div').append('<div class="chart_div" id="chart'+qidx+'_div"></div>');

//create chart
charts[qidx] = new google.visualization.ChartWrapper({
'chartType': 'ColumnChart',
'containerId': 'chart'+qidx+'_div',
'options': {
'title': data.getColumnLabel(qidx),
'xwidth': 400,
'xheight': 300,
'vAxis': {
'minValue': 0,
'maxValue': 100
},
'chartArea': {
'width': '80%',
'height': '60%',
'top': 30,
},
'legend':'bottom'
},
'view': {
'columns': [qidx, {calc:function(dataTable, rowNum) {
var curr_stat = dataTable.getValue(rowNum,qidx);
var distinct_values = dataTable.getDistinctValues(qidx);
var count = 0;
var numRows=dataTable.getNumberOfRows();

for (var ii=0; ii<numRows; ii++) {
stat = dataTable.getValue(ii,qidx);
if (stat == curr_stat) {
count++;
}
}
return count/numRows*100; //return percentage
}, type:'number', label: '1Q'}]
}
});

}(qidx);
}

//set the rows of the chart
function setChartRows () {

//loop though the charts
for(qidx=0;qidx < nCols;qidx++) {

var dt = charts[qidx].getDataTable();
var rows = dt.getNumberOfRows();
var distinct_values = dt.getDistinctValues(qidx);
var arRows = [];

for (var ii=0; ii<distinct_values.length; ii++) {
for (var jj=0; jj<rows; jj++) {
var curr_stat = dt.getValue(jj,qidx);
if (curr_stat == distinct_values[ii]) {
arRows.push(jj);
break;
}
}
}

var view = charts[qidx].getView() || {};
view.rows = arRows;
charts[qidx].setView(view);
charts[qidx].draw();

}
}

//when the table is created/changed update the chart
google.visualization.events.addListener(table, 'ready', setChartRows);

charts.push(table);
dashboard.bind(genderSelection, charts);
dashboard.draw(data);

});
//});

};

//run
proc();

//refresh every 5 minutes
var run = setInterval(proc,300000)

</script>

</body>
</html>

最佳答案

1 和 2) 可以通过断开图表仪表板的连接来纠正这些问题

'ready'事件在表格上触发时,可以独立绘制图表
使用table图表中过滤后的数据

这将防止首次加载时出现错误和绘制初始原始数据

<小时/>

3) 要对标签进行自定义排序,请在数据数组中使用对象表示法 {}

数据表中的每个单元格都必须有一个值 (v:),
并且可选地,可以有一个格式化值(f:)

在数据数组中,而不是使用 --> "1. Male"

使用对象表示法 --> {v: "1", f: "Male"}

注意:图表默认显示格式化值

但是,必须在CategoryFilter上设置两个选项

set option --> useFormattedValue: true -- 在控件中显示格式化值

set option --> ui.sortValues: false -- 显示数据中找到的类别

<小时/>

请参阅以下工作片段

数据中的前两列已更新为使用如上所述的对象表示法...

//load the library
google.charts.load('current', {
callback: function () {
var data = [
["Gender","Last time","Origin\/transfer","How arrived","Reason for flight","Section","Shop concessions","Purchase merchandise","Purchase services","Connect to WIFI","Overall experience","Country","Age group","Zip code","Education","Employment Status","Employment Status Group","Household income","Hispanic","Race","2. Children"],
[{v: "1", f: "Male"},{v: "3", f: "1-2 years"},"1. Starting","8. Other","3. Other","1. First\/Business","1. Yes","2. No","1. Yes","2. No","4. Very good","2. Other","5. 45-54",75201,"5. College degree","4. Student","2. Not Employed","4. 100k - 150k","1. Yes","4. Native American \/ American Indian","1. No children"],
[{v: "2", f: "Female"},{v: "2", f: "6-12 months"},"2. Connection","1. Drove self","1. Business","1. First\/Business","2. No","1. Yes","1. Yes","1. Yes","4. Very good","1. USA","3. 26-34",32003,"4. Some college","2. Part-time","1. Employed","2. 40k - 75k","1. Yes","2. Black \/ African American","1. No children"],
[{v: "1", f: "Male"},{v: "2", f: "6-12 months"},"2. Connection","5.R ental","2. Leisure","2. Economy\/Coach","1. Yes","2. No","1. Yes","2. No","4. Very good","1. USA","5. 45-54",64101,"4. Some college","5. Homemaker","2. Not Employed","5. 150k+","1. Yes","5. Other","1. No children"],
[{v: "2", f: "Female"},{v: "2", f: "6-12 months"},"2. Connection","1. Drove self","2. Leisure","1. First\/Business","2. No","2. No","1. Yes","2. No","4. Very good","1. USA","5. 45-54",75201,"2. Some HS","4. Student","2. Not Employed","4. 100k - 150k","2. No","4. Native American \/ American Indian","Children"],
[{v: "2", f: "Female"},{v: "2", f: "6-12 months"},"2. Connection","5.R ental","2. Leisure","2. Economy\/Coach","1. Yes","2. No","1. Yes","2. No","4. Very good","1. USA","2. 22-25",84101,"4. Some college","4. Student","2. Not Employed","4. 100k - 150k","1. Yes","4. Native American \/ American Indian","1. No children"],
[{v: "2", f: "Female"},{v: "5", f: "3+ years"},"1. Starting","4. Bus\/shuttle","2. Leisure","1. First\/Business","2. No","2. No","2. No","1. Yes","4. Very good","2. Other","3. 26-34",32003,"5. College degree","6. Unemployed not looking","2. Not Employed","6. Refused","2. No",null,"1. No children"],
[{v: "2", f: "Female"},{v: "4", f: "2-3 years"},"1. Starting","8. Other","3. Other","2. Economy\/Coach","2. No","2. No","2. No","2. No","1. Poor","2. Other","6. 55-64",99501,"4. Some college","3. Retired","2. Not Employed","3. 75k - 100k","2. No","3. Asian","1. No children"],
[{v: "2", f: "Female"},{v: "5", f: "3+ years"},"1. Starting","5.R ental","3. Other","1. First\/Business","2. No","1. Yes","2. No","1. Yes","1. Poor","1. USA","1. 16-21",15668,"4. Some college","1. Full-time","1. Employed","1. < 40k","2. No","1. White \/ Caucasian","1. No children"]
];

nCols=data[0].length;
charts=[];
data = google.visualization.arrayToDataTable(data);
dashboard = new google.visualization.Dashboard(document.getElementById('dashboard_div'));

//create Gender filter
var genderSelection = new google.visualization.ControlWrapper({
'controlType': 'CategoryFilter',
'containerId': 'filter_div',
'options': {
'filterColumnLabel': 'Gender',
'useFormattedValue': true,
'ui': {
'sortValues': false
}
}
});

//create the table
var table = new google.visualization.ChartWrapper({
'chartType': 'Table',
'dataTable': data,
'containerId': 'table_div',
'options': {'width': '800px'}
});

//create the charts
for(qidx=0;qidx < nCols;qidx++) {
var createChart = function(qidx) {
//add place for chart
$('#dashboard_div').append('<div class="chart_div" id="chart'+qidx+'_div"></div>');

//create chart
charts[qidx] = new google.visualization.ChartWrapper({
'chartType': 'ColumnChart',
'containerId': 'chart'+qidx+'_div',
'options': {
'title': data.getColumnLabel(qidx),
'xwidth': 400,
'xheight': 300,
'vAxis': {
'minValue': 0,
'maxValue': 100
},
'chartArea': {
'width': '80%',
'height': '60%',
'top': 30,
},
'legend':'bottom'
},
'view': {
'columns': [qidx, {calc:function(dataTable, rowNum) {
var curr_stat = dataTable.getValue(rowNum,qidx);
var distinct_values = dataTable.getDistinctValues(qidx);
var count = 0;
var numRows=dataTable.getNumberOfRows();

for (var ii=0; ii<numRows; ii++) {
stat = dataTable.getValue(ii,qidx);
if (stat == curr_stat) {
count++;
}
}
return count/numRows*100; //return percentage
}, type:'number', label: '1Q'}]
}
});
}(qidx);
}

//set the rows of the chart
function setChartRows (dt) {
//loop though the charts
for(qidx=0;qidx < nCols;qidx++) {
var rows = dt.getNumberOfRows();
var distinct_values = dt.getDistinctValues(qidx);
var arRows = [];

for (var ii=0; ii<distinct_values.length; ii++) {
for (var jj=0; jj<rows; jj++) {
var curr_stat = dt.getValue(jj,qidx);
if (curr_stat == distinct_values[ii]) {
arRows.push(jj);
break;
}
}
}

var view = charts[qidx].getView() || {};
view.rows = arRows;
charts[qidx].setDataTable(dt);
charts[qidx].setView(view);
charts[qidx].draw();
}
}

//when the table is created/changed update the chart
google.visualization.events.addListener(table, 'ready', function () {
setChartRows(table.getDataTable());
});

dashboard.bind(genderSelection, table);
dashboard.draw(data);
},
packages: ['corechart', 'controls']
});
#table_div{display:none;}
.chart_div{display:inline-block;border:1px solid #888;margin-right:5px;}
<script src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<div id="dashboard_div">
<div id="filter_div"></div>
<div id="table_div"></div>
</div>

关于javascript - Google 可视化仪表板错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41000812/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com