Giter VIP home page Giter VIP logo

critical-difference-diagram's Introduction

CD diagram

Simple JS library to create a CD diagram in SVG format

Example usage:

<!DOCTYPE html>
<head>
	<style>
		html, body { margin: 0; padding: 0; }
	</style>
	<script src="../dist/critical-difference-diagram-1.0.0.js"></script>
</head>
<body>
	<div id="cd"></div>
	<script>

		let data = [
			{model: 'model1', rank: 1.2, clique: [0]},
			{model: 'model2', rank: 1.5, clique: [0]},
			{model: 'model4', rank: 3.0, clique: [1,5]},
			{model: 'model8', rank: 6.4, clique: [4]},
			{model: 'model5', rank: 3.4, clique: [2,5]},
			{model: 'model3', rank: 2.8, clique: [1]},
			{model: 'model6', rank: 4.5, clique: [3]},
			{model: 'model7', rank: 5.8, clique: [4]},
		];

		let cd = new CriticalDifferenceDiagram({
			data,
			width: 400,
			fontSize: 10,
			fontFamily: 'Verdana',
			targetDiv: 'cd'
		});

		cd.draw();

	</script>
</body>
</html>

critical-difference-diagram's People

Contributors

dpogoda avatar

Watchers

 avatar

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.