Skip to content

Commit e61d1bf

Browse files
Merge branch 'main' into hotfix/detailed-using-expressions
2 parents 4475a65 + 69fc960 commit e61d1bf

10 files changed

+280
-203
lines changed

Project.toml

-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ version = "2.0.1-DEV"
66
[deps]
77
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
88
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
9-
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
109

1110
[compat]
1211
CairoMakie = "0.12.18"
1312
DataFrames = "1.7.0"
14-
Interpolations = "0.15.1"
1513
julia = "1.10"

README.md

+24-30
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ParallelPlots
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://moritz155.github.io/ParallelPlots.jl/stable/)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://moritz155.github.io/ParallelPlots.jl/dev/)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://moritz155.github.io/ParallelPlots/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://moritz155.github.io/ParallelPlots/dev/)
55
[![Build Status](https://github.com/moritz155/ParallelPlots/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/moritz155/ParallelPlots/actions/workflows/CI.yml?query=branch%3Amain)
66
[![Coverage](https://codecov.io/gh/moritz155/ParallelPlots/branch/main/graph/badge.svg)](https://codecov.io/gh/moritz155/ParallelPlots)
77

@@ -10,27 +10,21 @@ This Project is for the TU-Berlin Course "Julia Programming for Machine Learning
1010
Please make sure, that Julia `1.10` is used!
1111

1212
This Module will return you a nice Scene you can use to display your Data with [Parallel Coordinates](https://en.wikipedia.org/wiki/Parallel_coordinates)<br>
13-
<img src="test/parallel_coordinates_plot.png" width="300" />
13+
<img src="test/projectile_simulation.png" width="300" />
1414

1515
_This Module was created with PkgTemplates.jl_
1616

1717
## Getting Started
1818

19-
### Install Dependencies & Use Package
20-
Please refer to this [Link](https://adrianhill.de/julia-ml-course/lectures/E1_Installation.html) for Installation of Julia
21-
22-
You need to use the package (1-3) and install the dependencies (4-5)
23-
1. Open Julia with `julia` in your command prompt
24-
2. Open the package manager with `]`
25-
3. Using our Package
26-
* `activate /path/to/package` <br>
27-
or<br>
28-
`activate .` when Julia was opened with command prompt already in package path
29-
30-
* _you will then see: `(ParallelPlots) pkg>`_
31-
4. go back to `julia>` by pressing `CMD`+`C`
32-
5. `Import ParallelPlots` to download Dependencies and use the Package from Command Line
33-
19+
### Install Dependencies & Use ParallelPlots
20+
#### Script/REPL
21+
`Pkg> add https://github.com/moritz155/ParallelPlots`
22+
#### Notebook
23+
```
24+
using Pkg
25+
Pkg.add(url="https://github.com/moritz155/ParallelPlots")
26+
using ParallelPlots
27+
```
3428
### Usage
3529
#### Available Parameter
3630

@@ -92,23 +86,23 @@ parallelplot(df,
9286

9387
Please read the [Docs](/docs/build/index.html) for further Information
9488

95-
### Working on this Package / Cheatsheet
96-
1. Using the Package
97-
* `activate /path/to/package` <br>
98-
or<br>
99-
`activate .` when Julia was opened with command prompt already in package path
100-
101-
* _you will then see: `(ParallelPlots) pkg>`_
89+
### Working on ParallelPlots / Cheatsheet
90+
1. Using ParallelPlots
91+
* Moving to the project folder
92+
* `julia --project`
93+
* You will see `julia>`
94+
* To move to the pkg, type in `]`
95+
10296

10397
2. Running commands
10498
* Adding external Dependencies
105-
- `add DepName`
106-
* Run Tests to check if Package is still working as intended
107-
- `test`
99+
- `(ParallelPlots) pkg>add 'DepName'`
100+
* Run Tests to check if ParallelPlots is still working as intended
101+
- `(ParallelPlots) pkg>test`
108102
* Build
109-
- `build`
103+
- `(ParallelPlots) pkg>build`
110104
* Precompile
111-
- `precompile`
105+
- `(ParallelPlots) pkg>precompile`
112106

113107

114108
#### Create Docs

0 commit comments

Comments
 (0)