Skip to content

Commit

Permalink
chore(ci): improving readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mariogarcia committed Dec 16, 2024
1 parent 4b80747 commit 90329ba
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

Underdog is a set of Groovy libraries for data analysis:

- `underdog-dataframe`: combines tools for working with columnar data
- `underdog-graphs`: can be used for exploring graph theory problems.
- `underdog-plots`: renders different types of charts and adds integration with rest of Underdog's modules
- `underdog-ml`: can be used to explore machine learning problems.
- `underdog-ta`: cab be used for financial technical analysis.
- `underdog-dataframe`: module for working with columnar data.
- `underdog-graphs`: module exploring graph theory problems.
- `underdog-plots`: module for creating charts.
- `underdog-ml`: module to explore machine learning problems.
- `underdog-ta`: module for financial technical analysis.

### Dependencies

Depending on the module you can import one or more dependencies. Here you have the coordinates both in Gradle and Maven:
Depending on the module you can import one or more dependencies. Here you have the coordinates both in Gradle:

Gradle

Expand All @@ -25,7 +25,8 @@ implementation 'com.github.grooviter:underdog-ml:VERSION'
implementation 'com.github.grooviter:underdog-plots:VERSION'
implementation 'com.github.grooviter:underdog-ta:VERSION'
```
Maven

And Maven:

```xml
<dependency>
Expand All @@ -44,14 +45,14 @@ Maven
<version>VERSION</version>
</dependency>
<dependency>
<groupId>com.github.grooviter</groupId>
<artifactId>underdog-plots</artifactId>
<version>VERSION</version>
<groupId>com.github.grooviter</groupId>
<artifactId>underdog-plots</artifactId>
<version>VERSION</version>
</dependency>
<dependency>
<groupId>com.github.grooviter</groupId>
<artifactId>underdog-ta</artifactId>
<version>VERSION</version>
<groupId>com.github.grooviter</groupId>
<artifactId>underdog-ta</artifactId>
<version>VERSION</version>
</dependency>
```

Expand Down

0 comments on commit 90329ba

Please sign in to comment.