Skip to content

Commit 144e4cc

Browse files
authored
Merge pull request #319 from Dessia-tech/dev
v0.20.0
2 parents d9237e5 + cb8ae6f commit 144e4cc

36 files changed

Lines changed: 5697 additions & 8233 deletions

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.19.1]
8+
## [0.20.0]
9+
### Add
10+
- Toggle Axes
11+
- Customable axes names of Draw
912

13+
## [0.19.1]
1014
### Build
11-
1215
- Use pip install instead of setuptools install in order to avoid .egg being generating and preventing PyPI upload
1316

1417

1518
## [0.19.0]
1619
### Fixes
17-
- Multiplot Drawing
20+
- Multiplot Drawing + its review
21+
22+
### Refactor
23+
- Remove ill code
24+
- Files organization 1
25+
- Change names of classes and functions (e.g. remove 'new' prefix)
26+
- Files organization 2
1827

1928
## [0.18.0]
2029
### Add

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
1-
# plot-data
2-
1+
# Plot Data: Plot and draw your Python data on your web browser
32
[![npm (scoped)](https://img.shields.io/npm/v/plot-data.svg)](https://www.npmjs.com/package/plot-data)
43
[![npm bundle size (minified)](https://img.shields.io/bundlephobia/min/plot-data.svg)](https://www.npmjs.com/package/plot-data)
54
![npm](https://img.shields.io/npm/dt/plot-data)
65
![GitHub last commit](https://img.shields.io/github/last-commit/Dessia-tech/plot_data)
76

7+
## Introduction
8+
Plot Data is a Python library that allows to plot and draw interactive figures on your web browser.
9+
With Plot Data you will be able to draw:
10+
- Scatters:
11+
![image](https://github.com/Dessia-tech/plot_data/assets/106539650/1fb8af76-f6eb-46e6-9fe6-d0535a9d7034)
12+
13+
- Graphs:
14+
![image](https://github.com/Dessia-tech/plot_data/assets/106539650/eef16371-0801-4165-919e-57e138d054e6)
15+
16+
- Histograms:
17+
![image](https://github.com/Dessia-tech/plot_data/assets/106539650/f6da4f39-6d20-4a0f-8bcc-cff63fda0e8a)
18+
19+
- Parallel plots:
20+
![image](https://github.com/Dessia-tech/plot_data/assets/106539650/c6c2b367-871c-400d-bb3e-a1042a454862)
21+
22+
- Draws:
23+
![image](https://github.com/Dessia-tech/plot_data/assets/106539650/8c7f6767-1c81-45c6-8373-75e3b3d31923)
24+
25+
- And put this all together in a Multiplot:
26+
![image](https://github.com/Dessia-tech/plot_data/assets/106539650/587a9e4e-4b9d-46de-be18-42f9bf918416)
27+
828
## Install
929

1030
```

cypress/e2e/colors.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as colors from "../../src/color_conversion";
1+
import * as colors from "../../src/colors";
22

33
const rgb = [163, 112, 41];
44
const hsl = [35, 60, 40];

cypress/e2e/histogram.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { parseHTML } from '../support/parseHTML';
22
import histogramData from '../data_src/histogram.data.json';
3-
import { Frame, Histogram } from '../../src/subplots';
4-
import { Vertex } from '../../src/utils';
3+
import { Frame, Histogram } from '../../src/figures';
4+
import { Vertex } from '../../src/baseShape';
55

66
const FEATURE_NAME = "histogram"
77

cypress/e2e/multiplot.cy.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { parseHTML } from '../support/parseHTML';
22
import multiplotData from '../data_src/multiplot.data.json';
3-
import primitiveGroupContainerData from '../data_src/primitivegroupcontainer.data.json';
43

54
const FEATURE_NAME = "multiplot"
65

cypress/e2e/simpleshapes.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { parseHTML } from '../support/parseHTML';
22
import simpleshapesData from '../data_src/simpleshapes.data.json';
3-
import { Draw } from '../../src/subplots';
3+
import { Draw } from '../../src/figures';
44

55
const FEATURE_NAME = "simpleshapes"
66

Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 2 additions & 2 deletions
Loading

package-lock.json

Lines changed: 66 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)