Crossfilter is a JavaScript library for exploring large multivariate datasets in the browser.
0
votes
0answers
7 views
Is it possible to get the filters applied on a particular dimension?
Is it possible to get the filters applied on a particular dimension? I need to obtain all filters applied on a group of dc.js charts on click of a button.
0
votes
0answers
26 views
Bug in D3 or Crossfilter?
There's obviously a bug in Crossfilter or D3 somewhere. In the example at
http://square.github.io/crossfilter/
when it loads it is supposed to show the top 40 ordered by time. Instead it shows ...
1
vote
0answers
56 views
Extending a crossfilter/d3 example to handle wrapping bar charts
I am in the process of trying to extend Jason Davies' example of crossfilterjs example (you can see it here at http://square.github.io/crossfilter/) to make it able to hand larger data sets. My idea ...
1
vote
0answers
22 views
Crossfilter.js and D3 - how to chart a reduceSum instead of a count?
Using crossfilter I can create dimensions and groups to filter.
I have a data set that has variables like
"Product", "date", transactionType" and "transactionValue"
I want to create a bar char by ...
0
votes
0answers
33 views
Size of a filtered dimension in Crossfilter?
I've read through the Crossfilter API docs several times but can't see how to do the following.
Suppose I have set up
crossfilter(event);
and a dimension foo:
var foo = ...
2
votes
0answers
16 views
Using 'Ajax updated' dataset with crossfilter
I have a really large dataset (about 500 000 records...) about the CO2 emission on London that I want to display with maps and charts using crossfilter.
For reasons of performance, I want to do ...
0
votes
1answer
65 views
Parsing Error While using D3 and Crossfilter with CSV
I am using jmeter for performing load test on web site. And Jmeter generates output in form of CSV file.
I want to generate bar graph using this CSV file. For generating graph i am using D3 and ...
0
votes
1answer
40 views
Working D3 And Crossfilter for generating graph
I am using jmeter for performing load test on web site. And Jmeter generates output in form of CSV file.
I want to represent this CSV data in form graph. For generating graph my teacher suggested me ...
2
votes
2answers
415 views
Trouble using DC.js (crossfilter and d3 convenience library) - bar chart not showing values
I am using this library: Dimensional Charting to build some relatively standard charts that need CrossFilter functionality.
I have been following the examples but they aren't working for me.
Here is ...
0
votes
1answer
57 views
Crossfilter filtering and displaying on array properties
I have an array of data objects like this:
{
index: "M1",
first: "First",
last: "Last",
distance: 5,
specialties: ["Pediatrics", "Internal"],
languages: ["English", "French"]
}
In ...
0
votes
1answer
67 views
Update Selection in D3 is empty
In my code, my update selection is always empty, as is my exit selection, so the transitions never run. Every time I refresh, I end up redrawing the entire DOM fragment as if it never existed before ...
0
votes
1answer
242 views
Trying to render data d3 crossfilter dc.js BarChart. The chart is drawn, but it's empty
I must be doing something naive, but I can't get my data to render within the chart.
here's my example data:
var data = [
{
date: '02-12-2013',
val: 13,
}
{
...
0
votes
1answer
114 views
Crossfilter filter based on textbox
I would like to filter my data based on the input in a textbox. Is this possible ?(http://datatables.net/release-datatables/examples/api/multi_filter.html) something like this but then within the ...
2
votes
1answer
193 views
Crossfilter average group
Im trying to calculate the average querytime by sum(querytimes) and then dividing them by a count.How can i get the count ?
var querytimeByMonthGroup = moveMonths.group().reduceSum(function (d) {
...
1
vote
1answer
71 views
Why is this so in Crossfilter?
In the Crossfilter documentation, it states the following.
a grouping intersects the crossfilter's current filters, except for the associated dimension's filter. Thus, group methods consider only ...
0
votes
0answers
165 views
D3 JS Layout Tree connected to CrossFilter
How would I connect a D3.JS Tree Layout with CrossFilter?
Suppose I have this example tree. I then extract a list of tree nodes, which serves as the input data set for CrossFilter.
// Compute the ...
1
vote
1answer
239 views
dc.js bar chart with ordinal x axis scale doesn't render correctly
I've recently discovered dc.js and have been trying to implement a simple bar chart using the bar chart example provided on d3.js's website: http://bl.ocks.org/mbostock/3885304.
However, as part of ...
1
vote
1answer
318 views
Properly display bin width in barChart using dc.js and crossfilter.js
I'm making a bar chart using the Dimensional Charting javascript library dc.js, which is based on d3 and crossfilter.
All I want to do is display a histogram with a specified number of bins---this ...
0
votes
1answer
189 views
SVG Selenium click do not work
I want to simulate a simple mouse click and drag within an svg element.
I managed to get the coordinates of my starting and ending point, both absolute (window coordinates) and relative to the ...
0
votes
1answer
103 views
crossfilter filter does not apply on update data. Is it by design?
I am managing a large dateset using crossfilter in my recent project, in which I will need ability to change the data value (a bool). However after the value changed, the filter on this property does ...
2
votes
3answers
439 views
Sort by multiple dimensions in crossfilter.js
I'm using Mike Bostock's crossfilter library to filter and sort large datasets. My problem: Given a dataset with multiple dimensions, how can I sort on more than one dimension at a time?
Example ...
0
votes
1answer
110 views
Logarithmic charts in crossfilter
I'm charting various lists of data into histograms using crossfilter. Some of the item's values are a lot higher than others and I'm keen to plot the histograms in a logarithmic fashion.
Is there a ...
0
votes
1answer
268 views
Array of objects to line chart series? (+ for Crossfilter solution)
In JavaScript, how do I transform a "long table format" to a data structure suitable for a line chart:
var data = [
{"type":"A"," year":2000," value":50},
{"type":"A"," year":2001," value":51},
...
0
votes
0answers
255 views
Crossfilter for multiple columns?
I have data for regions and years:
region year value
A 1900 60
A 1901 70
B 1900 78
B 1901 90
Is it correct to set up a crossfilter for both region and year like ...
0
votes
0answers
183 views
How to add custom colors to specific arcs in donut charts in d3?
I'm trying to build a donut chart. How can i add different colors that are specific to an arc. For example i want red color for status "one", blue for status "two" , green for status "three" and so ...
0
votes
0answers
235 views
How do I animate a crossfilter brush with d3 so that it also fires an event?
So I have situation similar to animating the brush on the date histogram of http://square.github.com/crossfilter/.
I can start an animation by resizing the brush manually and dragging it to the right ...
1
vote
2answers
1k views
Adding tooltip to bar chart generated using svg path
how can i add a tooltip to each bar in a barchart generated using svg path... Is it possible to use bootstrap tooltip...?
I have provided my svg path below
<path class="foreground bar" ...
2
votes
0answers
217 views
How to access Filter values in Crossfilter
I know how to alter filters in Crossfilter using:
javascript:filter([null, [80, 150], null, [new Date(fromDate), new Date(toDate)]])
But how do I get the current filter selection e.g. when a user ...
5
votes
1answer
577 views
Working With Filters in Crossfilter
I have just started working with crossfilter and d3.js ... I'm trying some snippets given in the API reference... I Have the following data
var payments = crossfilter([
{date: ...
0
votes
1answer
529 views
Applying a date range filter to a crossfilter dimension
I'm attempting to use the crossfilter javascript library (in conjunction with D3.js) to group and filter json data.
My json data has the following fields: week_date, category, team_name, title, ...
3
votes
3answers
2k views
D3 Crossfilter basic example
I am just getting introduced to D3 and really like the crossfilter library. I would like to generate something similar but instead of their flight data, I have CSV data in the format: row,col,value.
...
0
votes
1answer
331 views
Crossfilter Example doesn't work
I have downloaded the CrossFilter example from the following link:
https://github.com/square/crossfilter/tree/gh-pages
and it seems not to work. The page loads, but the charts and the table does ...
0
votes
1answer
185 views
How to fill in the gaps in the crossfilter group.all() results?
I have a data set defined as such:
var hour = data.crossfilter.dimension(function(d){ return d.date.getHours() + d.date.getMinutes() / 60; });
var hours = hour.group(Math.floor);
The generated ...
1
vote
1answer
311 views
Building a vertical crossfilter chart
Starting from the basic Crossfilter example, i'd like to create an alternate visualization that displays the barcharts vertically instead of horizontally. That is, essentially flip the axies of the ...
2
votes
1answer
968 views
How to create a histogram using d3.js and crossfilter data?
Demo:
http://dev.anuary.com/441bad2f-bcc8-5fe5-af46-f15308f3aee9/ (permanent link; might take a second to load)
The crossfilter key does not reflect the upper boundary. Therefore, the x-axis is ...
15
votes
2answers
1k views
Crossfilter query
Is it possible to filter a crossfilter dataset which has an array as the value?
For example, say I have the following dataset:
var data = [
{
bookname: "the joy of clojure",
authors: ...
8
votes
1answer
2k views
Redrawing histograms with Crossfilter and D3
I'm adapting the Crossfilter library to visualize some tweets i've been gathering from the Olympics. I'm attempting to essentially extend the initial example in two ways:
Instead of displaying ...
0
votes
1answer
787 views
D3 with crossfilter becomes very slow large datasets
I have a visualization similar to the crossfilter example, except that the crossfilter selection dynamically updates a timeline. The code works well with around 100 elements. I tested the code with ...
0
votes
0answers
118 views
Add additional filter in Fusion Tables
In my fusion tables application I am using a drop down list, and depending on the selection, it will update the second drop down list from the database and it will filter the markers on the map (the ...
5
votes
2answers
592 views
Discrete filter for D3 Crossfilter Dimensions
Is there a way to create a dimension on a attribute that has one or more values? For example
{quantity: 2, total: 190, tip: 100, items: ["apple","sandwich"],
{quantity: 2, total: 190, tip: 100, ...
1
vote
1answer
382 views
Dynamically add dimensions to crossfilter
I have a very high dimensional dataset and would like the users to choose the dimensions to filter (add them to the crossfilter). I understand that dimensions can not be removed. Are there any ...
1
vote
2answers
786 views
Filter for multiple discrete values in crossfilter
Does anyone have an approach to filtering a crossfilter object dimension on multiple values? Something like
.filterExact(["cash","visa"])
or
.filter(["cash","visa"])
...but not the range form of ...
1
vote
2answers
1k views
How do I convert a JavaScript forEach loop/function to CoffeeScript
Background: I'm trying to convert some JavaScript code which uses the the Crossfilter library with D3.js data visualization library into CoffeeScript.
What is the best way to convert a JavaScript ...
1
vote
2answers
287 views
Crossfilter in IE8?
Does anyone know whether Crossfilter is likely to work in IE8?
I don't have a copy of Windows available to check it out. I need to support IE8 in my finished app, but don't know whether even starting ...
8
votes
1answer
1k views
Using crossfilter to dynamically return results in JavaScript
I feel that the crossfilter library API explanation is written for someone above my skillset, but I also know that mastering it will solve my problem.
To make it simple, I will reference the API ...
1
vote
2answers
392 views
Using crossfilter, is it possible to destroy / remove it once its be instantiated?
Im referring square crossfilter plugin for javascript
https://github.com/square/crossfilter
In my app, users are be able to select specific date ranges and each time the date is changed, an ajax ...
4
votes
2answers
1k views
Using Crossfilter, is it possible to track max/min when grouping?
When using Crossfilter (https://github.com/square/crossfilter), I specify functions to use when adding and removing data from a group. It's fairly trivial to keep track of a running average (using ...


