0.1.0 β’ Published 3 years ago
oneai-analytics-treemap v0.1.0
One AI Analytics Treemap
One AI is a NLP as a service platform. Our API enables language comprehension in context, transforming texts from any source into structured data to use in code.
This treemap component is an easy API to display the results of our clustering skill.
Documentation
See the documentation
Getting started
Installation
npm install oneai-analytics-treemap
Example
See the online example
import { AnalyticsTreemap } from 'oneai-analytics-treemap';
const MyAnalyticsComponent = () => {
return (
<div style={{ display: 'grid', minHeight: '80vh' }}>
<AnalyticsTreemap clusters={clusters} />
</div>
);
};
// clusters are the result of our clustering skill API
const clusters = [
{
skill: 'CLUSTER-TOPICS',
text: 'Buy the dip',
items_count: 12,
span_text: 'Buy the dip',
phrases: [
{
text: 'Buy the dip',
items_count: 9,
phrases: {
'Buy the dip': 6,
'I bought the dip': 2,
'Buy the dips and hold': 1,
},
},
{
text: 'Buying The Dip πβ',
items_count: 3,
phrases: {
'Buying The Dip πβ': 1,
'Bought the Dip ππ¦': 1,
'BUYING THE DIP! πππ': 1,
},
},
],
},
{
skill: 'CLUSTER-TOPICS',
text: 'Sndlπππ',
items_count: 4,
span_text: 'Sndlπππ',
phrases: [
{
text: 'Sndlπππ',
items_count: 2,
phrases: {
'Sndlπππ': 1,
'π': 1,
},
},
{
text: 'πππππ. π¦π',
items_count: 2,
phrases: {
'πππππ. π¦π': 1,
'π¦. ππ': 1,
},
},
],
},
];Support
Feel free to submit issues in this repo, contact us at devrel@oneai.com, or chat with us on Discord
Contribute
PRs are welcomed!
First, clone the repo and install dependencies.
Develop:
yarn startTest:
yarn testRun the exmaple:
cd example
yarn install
yarn start0.1.0
3 years ago