Coder Social home page Coder Social logo

badosa / json-stat Goto Github PK

View Code? Open in Web Editor NEW
79.0 17.0 24.0 1.57 MB

JSON-stat Toolkit version 0

Home Page: https://jsonstat.com

License: Other

JavaScript 70.25% HTML 29.08% CSS 0.68%
json-stat jsonstat stats cube opendata format json javascript jjt data-cube

json-stat's Introduction

Important Notice

This is the repository of JSON-stat Javascript Toolkit version 0 (jsonstat module). This repository is frozen and is no longer maintained. JSON-stat Javascript Toolkit version 1 (jsonstat-toolkit module) is the current active release and is available in a new repository: https://github.com/jsonstat/toolkit.

JSON-stat Javascript Toolkit

The JSON-stat format is a simple lightweight JSON format for data dissemination. It is based in a cube model that arises from the evidence that the most common form of data dissemination is the tabular form. In this cube model, datasets are organized in dimensions. Dimensions are organized in categories.

The JSON-stat Javascript Toolkit (JJT) is part of the JSON-stat Toolkit. JJT's goal is to help dealing with JSON-stat responses in JavaScript.

Resources

Design principles

JSON-stat is based on a data cube information structure. The JSON-stat Javascript Toolkit exposes the data cube as a tree.

The JSON-stat tree

Datasets

Datasets are organized in dimensions and data.

  • Dataset
    • Dimension
      • Category
    • Data

Collections

Collections are sets of items. Items can be collections, datasets and dimensions (currently not supported by JJT).

  • Collection
    • Item

Generally, items in a collection contain just basic content and a pointer that allow a client to retrieve the full information about the item. But a collection can also contain the full information (embedded items).

Bundles (JSON-stat<2.0)

Bundles were packages of unordered arbitrary datasets.

  • Bundle
    • Dataset
      • Dimension
        • Category
      • Data

Even though JSON-stat currently encourages the use of collections of embedded datasets instead of bundles, JJT supports both approaches.

To retrieve information about the first category of the first dimension of the first embedded dataset in a JSON-stat collection (or bundle) j, the JSON-stat Javascript Toolkit allows you to traverse the JSON-stat tree like this:

JSONstat( j ).Dataset( 0 ).Dimension( 0 ).Category( 0 )

The class of the response can be checked using the class property:

if(JSONstat( j ).class==="dataset"){
   var cat0=JSONstat( j ).Dimension( 0 ).Category( 0 );   
}

General properties

  • label: label of the selected element (string)
  • length: number of children of the selected element (number).
  • id: IDs of the children of the selected element (array).

Reading and traversing methods

These methods (except JSONstat, which is not actually a method) accept a selection argument. If it is not provided, an array is returned with the information for every child of the selected element.

JSONstat

It reads a JSON-stat response and returns an object.

JSONstat( { ... } ).length
//number of datasets in the object

JSONstat( "https://json-stat.org/samples/oecd-canada-col.json" ).length
//number of items in oecd-canada-col.json. Sync connection. (Not available in the Node.js module.)

JSONstat( "https://json-stat.org/samples/oecd-canada-col.json",
   function(){
      console.log( this.length );
   }
)
//number of items in oecd-canada-col.json. Async connection. (Not available in the Node.js module.)

Dataset

It selects an embedded dataset in the JSON-stat collection (or bundle).

JSONstat( j ).Dataset( 0 ).id //IDs of the dimensions in the first dataset

Dimension

It selects a particular dimension in a dataset.

JSONstat( j ).Dataset( 0 ).Dimension( "time" ).label
//Label of the "time" dimension in the first dataset

JSONstat( j ).Dataset( 0 ).Dimension( "country" ).role
//Role of the "country" dimension in the first dataset

Category

It selects a particular category in a dimension in a dataset.

JSONstat( j ).Dataset( 0 ).Dimension( "time" ).Category( 0 ).label
//Label of the first category of the "time" dimension in the first dataset

Data

When an argument is passed, selects a single cell of the data cube in the JSON-stat response. If no argument is passed, returns all the cells.

The resulting object contains the property "value" (value of a cell) and "status" (its status).

JSONstat( j ).Dataset( 0 ).Data( 0 ).value
//Value of the first cell (usually a number, but values can be of any type).

JSONstat( j ).Dataset( 0 ).Data( [ 0, 0, 0 ] ).value
//Value of the first cell in a dataset with 3 dimensions (usually a number).

JSONstat( j ).Dataset( 0 ).Data( { "metric" : "UNR", "geo" : "GR", "time" : "2014" } ).value
//Unemployment rate in Greece in 2014 (usually a number).

JSONstat( j ).Dataset( 0 ).Data( { "metric" : "UNR", "geo" : "GR", "time" : "2014" } ).status
//Status of unemployment rate in Greece in 2014.

When the argument is neither an integer nor an array, single category dimensions (“constant dimensions”) can be skipped. If one and only one non-constant dimension is not specified, the result will be an array with as many elements as categories in the unspecified dimension.

Transformation methods

Transformation methods get information in the JSON-stat tree and export it to a different JSON structure for convenience.

toTable

This is a dataset method. It converts the information of a particular dataset into a JSON table. The conversion can be setup using an optional argument.

JSONstat( j ).Dataset( 0 ).toTable()
//Returns an array of arrays that exposes a tabular structure (rows and columns).
//Useful in many situations. For example, it can be a Google Visualization API input.

JSONstat( j ).Dataset( 0 ).toTable( { field : "id" } )
//Uses ids instead of labels as column names.

JSONstat( j ).Dataset( 0 ).toTable( { vlabel : "Valor", type : "object" } )
//Returns an object of arrays (of objects) that exposes a tabular structure (rows and columns)
//in the Google DataTable format (it's the native input format of Google
//Visualization API input). The "vlabel" property is instructing the method to use
//"Valor" as the label of the values column (instead of "Value").

JSONstat( j ).Dataset( 0 ).toTable( { status : true, slabel : "Metadata" } )
//The table will include a status column with label "Metadata".

JSONstat( j ).Dataset( 0 ).toTable( { type : "arrobj" } )
//Returns an array of objects where each dimension id is a property, plus a "value" property.

JSONstat( j ).Dataset( 0 ).toTable( { type: "arrobj", content: "id" } )
//same but category ids ("AU") are used instead of labels ("Australia") even for content.

JSONstat( j ).Dataset( 1 ).toTable(
   { type : "arrobj", content : "id" },
   function( d, i ){
      if ( d.sex === "F" && d.concept === "POP" ){
         return { age : d.age, population : d.value*1000 };
      }
   }
)
//Get only the female population by age of Canada
//and convert values from thousands to persons.

json-stat's People

Contributors

abanctelchevrel avatar badosa avatar jfsiii avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

json-stat's Issues

Optional "unit" is mandatory for "metric" dimensions in JSON_stat Explorer

Spent some time troubleshooting before finding this one.
When a dimension "role" is "meric" the JSON-Stat requires "unit" to be defined in that dimension or it fails. The structure below follows JSON-stat schema.
According to standard and Schema the "unit" should be optional. Seen on 0.13.8 and 0.13.3.

Will fail:
{
"version": "2.0",
"class": "dataset",
"label": "2019-08-28",
"id": [
"datetime",
"concept"
],
"size": [
1,
1
],
"role": {
"time": [
"datetime"
],
"metric": [
"concept"
]
},
"value": [
500
],
"dimension": {
"datetime": {
"label": "datetime",
"category": {
"index": [
"2019-07-16T00:00:00+02:00"
]
}
},
"concept": {
"label": "concept",
"category": {
"index": [
"Bla_Attempt"
]
}
}
}
}

Dimension response support

Hi, according to the format spec, I'd like to use dimension response with the Json stat js toolkit.
But currently it fails since it assumes dimension is never the root document.

I've created a pull request (#7) to fix that (but I don't know what minyfier you are using so only the max.js is modified).

Hope it helps.

JSONstat()

Hi! Dunno if this is just me being dumb with stat, or if this is an error, but I've imported the module from npm, and tried to find values when retrieving the url.

Could you elaborate?

skjermbilde 2016-08-18 kl 20 42 22
skjermbilde 2016-08-18 kl 20 43 57

JSONstat() returns multiple datasets

First, thank you very much for this library and schema. The following code should be straightforward. It gets a json response using the .getJson() from jQuery and parses the object with JSONstat().

But, why does JSONstat() returns 6 datasets instead of 1? And why are they equal? (the dataset has 6 dimensions, but, is it related with having 6 datasets?)

$(function() {
	console.log("Ready!");

	var filtro = { unit: "PC_ACT", s_adj: "SA" };

	$.getJSON(
		"http://ec.europa.eu/eurostat/wdds/rest/data/v2.1/json/en/une_rt_m",
		filtro,
		function(data) {
			console.log(data);

			var x = JSONstat(data).Dataset(0);
			var y = JSONstat(data).Dataset(1);
			var z = JSONstat(data).Dataset(2);

			console.log(JSON.stringify(x) === JSON.stringify(y));

			console.log(x);
			console.log(y);
			console.log(z);
		}
	);
});

Best regards,

How to write json-stat?

I like the json-stat idea, and the library looks workable. I read the entire slideshare and now I'm onboard.

OK, so how to I actually write JSON-stat instances? Suppose I'm a back-end developer, and I have all kind of time series data that I'd like to send to the front in json-stat format. Categories and dimensions? Sold!

I'm having trouble finding any info online about how to write json-stat instances other than example files, and the schema documentation itself. Is there any library to facilitate this? In particular, if I'm going to write an array of values into a json-stat instance, I have to solve the "flattening" problem and do my own math based on my dimensions and concepts, of which value should be in which cell. The slideshare gives me enough detail to let me embark on this, but given Eurostat and other example JSON-stat files, someone must have already done this, and packaged it into library form, right?

Docs on the front page of this repo and in the wiki are good for reading JSON-stat, but how are people creating that data in the first place?

some doubts

Some doubts,

Do you think JSON-Stat is suitable to save stats created dinamically ?

It seems to me that create dinamically data in JSON-stat is a bit cryptic and I think that there's no library to do that, isn't it ?
Do you think is better to create my own type of data and then transform it or directly represent data in JSON-stat ?

I imagine that later is easy to get some datasets together and plot data. I need to save an object instead of a Number in each value to have more information. For example, in same data position, save timestamp when there's a value addition. I know that I'll have to map returned data. Is there a downside to that ??

Thanks!

How to have metadata for values

Hi all,
This is more of a question than a bug.
I have a jsonstat data structure where for one of the value columns in the table form I would like to place numbers from 0 to 3. Each number has a specific meaning. For instance 0=Neutral, 1=For, 2=Against . This is not a dimension so I can not give it an index and label.

Is there a way to attach metadata to one of the value columns. From the documentation I see that I can attach a status to each value but that is not exactly the best way. I know what values I would have in this column. I just don't want to place the names as the value.

If there is a better way, please give an example on how one can do it.

Thank you,
Best,
Ashkan

status fiels required

Hi,

Thanks for this useful library.

I noted a discrepancy though with http://json-stat.org/format specifications.
It is stated that status field is optional, but JJT seems to need it.

For instance

J = JSONstat("http://json-stat.org/samples/order.json")
J.Dataset(0).Data(0).value 

Raises TypeError: this.status is null

Publish JJUS to npm

While you can require('jsonstat'), JJUS still must be loaded by a <script> tag, as far as I can tell.

Please publish the utils file to npm as well. Be sure to require('jsonstat') in that file and list jsonstat as a dependency in package.json

Problem converting json-stat to table

Hi @badosa:

I'm not sure if this is a bug, maybe I'm doing something wrong.

I'm trying to use jsonstat library installed from npm to convert a JSON-stat file to a table.

This is the file I'm using: https://gist.github.com/predicador37/0c2bbfd821268d1a9bfd12be83e36e9d

And the code I'm trying:

    let bundle = JSONstat(response.data)
    console.log(bundle.Dataset(0).toTable())

At the console, Year and Month dimensions appear as 'undefined'. The rest of values are correctly populated. I think the file is json-stat 2 compliant...

Could you give me a hand?

Thanks in advance!

Updated examples

Hi! Sorry for the disturbance! I'm doing some work in stat now, and the documentation is really scattered. This toolkit is great, and includes a lot of great engineering, but using node and json-stat isn't really covered in examples. I'd like to see something like an example using modern javascript and node in order to convert json-stat to data-structures you could output. The closest thing I've come to this is doing something like in the screenshot, but some of the examples are also outdated, when it comes to transpiling and using webpack, though this is a special use case.

This is the closest thing I've come to extract the data in Node, but as showed in the tonic-dev example, using got fails, due internal errors in babel. If you know a fix to this, I'd very much like to see that!

skjermbilde 2016-08-19 kl 14 33 52

Investigate join-by performance

I ran into an issue recently where merged = JSONstatUtils.join(datasets, {by: 'date'}) took 3500-5000 milliseconds (3.5 - 5 seconds) on an array of 30 values.

I was able to work around this in our particular case using the following:

var meta = datasets[0];
var parts = [meta].concat(datasets);
var merged = JSONstatUtils.join(parts);
var keyIndex = meta.id.indexOf(key);
var values = datasets.reduce(function(acc, dataset) {
	return acc.concat(dataset.dimension[key].category.index                             
}, []);

merged.dimension[key].category.index = values;
merged.size[keyIndex] = values.length;

This took 3.5 to 5 milliseconds or 1/1000th the time of the original approach.

While I recognize this solution is specific to our data shape, and not suitable for all valid values, I think it highlights opportunities for optimizations in join.

I'll follow up with a trace showing where the time is spent but I believe it was in the repeated calls to toTable.

Example dataset entry
{
  "value": [128,13111,65683,87994,88140,101251,104489,101686,97839,84065,72174,62909,55400,48720,43354,39239,35373,31809,29476,26521,24325,22810,20810,19187,18266,16528,15594,14517,13850,12930,11931,11359,10607,10055,9421,8971,8511,7920,7771,7097,6819,6828,6312,6076,5704,5710,5315,5052,4875,4666,4509,4463,4309,3954,3819,3689,3593,3495,3342,3150,3125,3017,2940,2823,2766,2633,2624,2515,2401,2387,2291,2246,2119,2019,1997,1939,1998,1826,1953,1963,1873,1978,1898,1777,1791,1707,1740,1762,1640,1621,1493,1483,1422,1382,1340,1337,1298,1230,1178,1199,1179,1103,1139,1031,1084,1062,978,1037,960,944,904,973,927,883,816,895,838,881,828,770,737,791,775,768,717,725,697,652,658,632,656,616,599,599,550,590,554,527,519,516,522,474,500,524,493,470,449,499,493,463,442,451,404,391,451,403,408,429,494,726,533,684,651,504,482,472,456,439,373,371,345,347,327,315,299,291,311,312,331,287,293,261,275,292,252,261,256,270,249,256,255,223,239,243,233,224,201,249,279,317,231,291,267,239,210,205,173,180,188,212,167,173,190,179,186,188,184,147,177,156,172,151,183,209,193,221,234,190,184,152,173,144,147,171,154,168,138,140,132,130,137,140,145,147,131,145,121,150,137,131,107,135,114,119,115,125,111,123,129,155,109,108,115,118,127,133,113,121,97,120,104,115,123,124,118,117,107,117,123,129,124,96,101,108,111,71,94,97,104,120,99,101,105,90,106,113,107,98,80,98,107,113,95,98,88,88,93,82,109,81,101,96,72,97,109,88,92,103,89,91,112,94,114,104,110,94,79,105,99,109,96,90,83,78,81,88,78,91,89,65,76,77,70,69,80,92,92,76,100,77,76,81,77,64,69,78,70,70,73,88,67,72,59,61,66,61,78,63,58,67,59,62,75,63,66,50,62,63,56,73,63,59,67,70,62,60,69,59,72,66,62,51,46,63,53,50,47,59,46,48,59,65,77,55,63,59,48,65,54,53,52,46,49,50,52,54,53,46,63,37,53,58,50,42,47,44,50,41,53,28,53,42,40,32,46,57,47,36,31,46,38,49,37,51,46,45,38,44,47,33,39,56,36,40,45,40,44,33,40,45,37,38,48,44,60,39,47,39,32,42,31,43,34,42,36,24,25,40,30,42,32,33,43,46,34,45,40,35,37,30,37,37,34,31,39,45,56,65,59,44,39,42,29,36,29,22,34,42,32,37,41,35,36,31,25,21,25,27,42,28,22,31,32,32,34,34,30,24,24,19,25,25,25,22,31,25,33,27,28,22,18,20,29,26,42,27,29,19,26,24,31,12,26,21,26,24,29,15,30,20,38,28,20,24,32,40,28,28,53,38,33,25,26,42,21,30,28,16,29,35,28,21,37,29,28,24,19,21,20,34,28,26,22,28,17,15,17,17,20,22,17,29,16,19,24,18,14,15,25,10,16,21,17,10,21,14,18,16,22,10,26,8,28,21,18,9,16,18,12,16,20,19,13,13,12,14,21,18,12,23,13,12,21,23,22,20,22,13,21,20,18,24,39,23,14,21,20,14,10,16,17,20,19,17,11,19,12,14,14,17,15,13,14,14,13,14,18,17,14,21,17,13,15,17,14,17,29,13,18,30,18,17,16,14,18,16,17,15,17,16,14,32,16,9,13,9,8,16,10,13,11,14,9,18,13,16,20,14,8,15,12,10,18,12,22,8,12,22,11,13,15,11,14,10,11,10,8,19,9,16,12,15,15,8,12,8,9,11,20,11,15,14,16,16,9,16,10,17,11,14,0],
  "label": "Example latency values",
  "id": ["date","metric","client","country","bin"],
  "dimension": {
    "date": {
      "label": "Date",
      "category": { "index": [ "2017-04-22T00:00:00Z" ] }
    },
    "metric": {
      "label": "Metric",
      "category": {
        "index": [ "Latency" ],
        "unit": {
          "Latency": {
            "label": "Milliseconds",
            "decimals": 0
          }
        }
      }
    },
    "client": {
      "label": "Client",
      "category": { "index": [ "android" ] }
    },
    "country": {
      "label": "Country",
      "category": { "index": [ "All" ]
      }
    },
    "bin": {
      "label": "Bin",
      "category": {
        "index": ["0","250","500","750","1000","1250","1500","1750","2000","2250","2500","2750","3000","3250","3500","3750","4000","4250","4500","4750","5000","5250","5500","5750","6000","6250","6500","6750","7000","7250","7500","7750","8000","8250","8500","8750","9000","9250","9500","9750","10000","10250","10500","10750","11000","11250","11500","11750","12000","12250","12500","12750","13000","13250","13500","13750","14000","14250","14500","14750","15000","15250","15500","15750","16000","16250","16500","16750","17000","17250","17500","17750","18000","18250","18500","18750","19000","19250","19500","19750","20000","20250","20500","20750","21000","21250","21500","21750","22000","22250","22500","22750","23000","23250","23500","23750","24000","24250","24500","24750","25000","25250","25500","25750","26000","26250","26500","26750","27000","27250","27500","27750","28000","28250","28500","28750","29000","29250","29500","29750","30000","30250","30500","30750","31000","31250","31500","31750","32000","32250","32500","32750","33000","33250","33500","33750","34000","34250","34500","34750","35000","35250","35500","35750","36000","36250","36500","36750","37000","37250","37500","37750","38000","38250","38500","38750","39000","39250","39500","39750","40000","40250","40500","40750","41000","41250","41500","41750","42000","42250","42500","42750","43000","43250","43500","43750","44000","44250","44500","44750","45000","45250","45500","45750","46000","46250","46500","46750","47000","47250","47500","47750","48000","48250","48500","48750","49000","49250","49500","49750","50000","50250","50500","50750","51000","51250","51500","51750","52000","52250","52500","52750","53000","53250","53500","53750","54000","54250","54500","54750","55000","55250","55500","55750","56000","56250","56500","56750","57000","57250","57500","57750","58000","58250","58500","58750","59000","59250","59500","59750","60000","60250","60500","60750","61000","61250","61500","61750","62000","62250","62500","62750","63000","63250","63500","63750","64000","64250","64500","64750","65000","65250","65500","65750","66000","66250","66500","66750","67000","67250","67500","67750","68000","68250","68500","68750","69000","69250","69500","69750","70000","70250","70500","70750","71000","71250","71500","71750","72000","72250","72500","72750","73000","73250","73500","73750","74000","74250","74500","74750","75000","75250","75500","75750","76000","76250","76500","76750","77000","77250","77500","77750","78000","78250","78500","78750","79000","79250","79500","79750","80000","80250","80500","80750","81000","81250","81500","81750","82000","82250","82500","82750","83000","83250","83500","83750","84000","84250","84500","84750","85000","85250","85500","85750","86000","86250","86500","86750","87000","87250","87500","87750","88000","88250","88500","88750","89000","89250","89500","89750","90000","90250","90500","90750","91000","91250","91500","91750","92000","92250","92500","92750","93000","93250","93500","93750","94000","94250","94500","94750","95000","95250","95500","95750","96000","96250","96500","96750","97000","97250","97500","97750","98000","98250","98500","98750","99000","99250","99500","99750","100000","100250","100500","100750","101000","101250","101500","101750","102000","102250","102500","102750","103000","103250","103500","103750","104000","104250","104500","104750","105000","105250","105500","105750","106000","106250","106500","106750","107000","107250","107500","107750","108000","108250","108500","108750","109000","109250","109500","109750","110000","110250","110500","110750","111000","111250","111500","111750","112000","112250","112500","112750","113000","113250","113500","113750","114000","114250","114500","114750","115000","115250","115500","115750","116000","116250","116500","116750","117000","117250","117500","117750","118000","118250","118500","118750","119000","119250","119500","119750","120000","120250","120500","120750","121000","121250","121500","121750","122000","122250","122500","122750","123000","123250","123500","123750","124000","124250","124500","124750","125000","125250","125500","125750","126000","126250","126500","126750","127000","127250","127500","127750","128000","128250","128500","128750","129000","129250","129500","129750","130000","130250","130500","130750","131000","131250","131500","131750","132000","132250","132500","132750","133000","133250","133500","133750","134000","134250","134500","134750","135000","135250","135500","135750","136000","136250","136500","136750","137000","137250","137500","137750","138000","138250","138500","138750","139000","139250","139500","139750","140000","140250","140500","140750","141000","141250","141500","141750","142000","142250","142500","142750","143000","143250","143500","143750","144000","144250","144500","144750","145000","145250","145500","145750","146000","146250","146500","146750","147000","147250","147500","147750","148000","148250","148500","148750","149000","149250","149500","149750","150000","150250","150500","150750","151000","151250","151500","151750","152000","152250","152500","152750","153000","153250","153500","153750","154000","154250","154500","154750","155000","155250","155500","155750","156000","156250","156500","156750","157000","157250","157500","157750","158000","158250","158500","158750","159000","159250","159500","159750","160000","160250","160500","160750","161000","161250","161500","161750","162000","162250","162500","162750","163000","163250","163500","163750","164000","164250","164500","164750","165000","165250","165500","165750","166000","166250","166500","166750","167000","167250","167500","167750","168000","168250","168500","168750","169000","169250","169500","169750","170000","170250","170500","170750","171000","171250","171500","171750","172000","172250","172500","172750","173000","173250","173500","173750","174000","174250","174500","174750","175000","175250","175500","175750","176000","176250","176500","176750","177000","177250","177500","177750","178000","178250","178500","178750","179000","179250","179500","179750","180000","180250","180500","180750","181000","181250","181500","181750","182000","182250","182500","182750","183000","183250","183500","183750","184000","184250","184500","184750","185000","185250","185500","185750","186000","186250","186500","186750","187000","187250","187500","187750","188000","188250","188500","188750","189000","189250","189500","189750","190000"]
      }
    }
  },
  "size": [ 1, 1, 1, 1, 761 ],
  "role": {
    "metric": [ "metric" ],
    "time": [ "date" ],
    "geo": [ "country" ]
  },
  "version": "2.0",
  "class": "dataset"
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.