📅  最后修改于: 2023-12-03 15:30:07.511000             🧑  作者: Mango
Crossfilter is a Javascript library for exploring large, multi-dimensional datasets in real-time. With crossfilter, you can build interactive dashboards and data visualizations that update instantly as you select and filter your data.
Luckily, there are several CDNs (Content Delivery Networks) that host Crossfilter, making it easy to add to your project. Here are a few CDN options:
To include Crossfilter from CDNJS, add the following script tag to your HTML file:
<script src="https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.4.0/crossfilter.min.js"></script>
To include Crossfilter from jsDelivr, add the following script tag to your HTML file:
<script src="https://cdn.jsdelivr.net/npm/crossfilter@1.4.0/crossfilter.min.js"></script>
To include Crossfilter from UNPKG, add the following script tag to your HTML file:
<script src="https://unpkg.com/crossfilter@1.4.0/crossfilter.min.js"></script>
By using a CDN to include Crossfilter in your project, you can easily take advantage of the powerful data exploration capabilities that Crossfilter provides. Happy coding!