Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STAT-3: added package logo and minor fixes #24

Merged
merged 3 commits into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .graphics/512-20240628_dmplot-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dmplot
Title: Framework written in high-performance C++ and ggplot2 for financial, bioinformatics, and time series data analysis
Version: 1.8.0
Version: 1.8.1
URL: https://github.com/dereckmezquita/dmplot
Authors@R:
person(given = "Dereck",
Expand Down
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ options(
)
```

## dmplot
# dmplot <a href="https://dereckmezquita.github.io/dmplot"><img src="./.graphics/512-20240628_dmplot-logo.png" align="right" height="140" /></a>

<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
Expand Down Expand Up @@ -114,7 +114,7 @@ One can easily use external packages to calculate indicators as long as they ret

The reason for this is that we want to impose the use of "Tidy Data" principles, as this is the convention that `ggplot2` follows and would allow us to easily build our analyses and plots in layers.

For more information on working with `dmplot` see [Getting started with the dmplot framework](articles/getting-started-with-the-dmplot-framwork.html).
For more information on working with `dmplot` see [Getting started with the dmplot framework](articles/getting-started-with-the-dmplot-framework.html).

#### EMA and Bollinger Bands

Expand Down Expand Up @@ -350,7 +350,7 @@ ggplot2$autoplot(micro) +
values = c("ttr_bb_naked" = "red", "ttr_bb_wrapped" = "red", "dmplot_bb" = "green")
) +
ggplot2$labs(
title = "dmpplot vs TTR BBands"
title = "dmplot::bb vs TTR::BBands"
) +
ggplot2$theme(legend.position = "none")

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

## dmplot
# dmplot <a href="https://dereckmezquita.github.io/dmplot"><img src="./.graphics/512-20240628_dmplot-logo.png" align="right" height="140" /></a>

<!-- badges: start -->

Expand Down Expand Up @@ -112,7 +112,7 @@ allow us to easily build our analyses and plots in layers.

For more information on working with `dmplot` see [Getting started with
the dmplot
framework](articles/getting-started-with-the-dmplot-framwork.html).
framework](articles/getting-started-with-the-dmplot-framework.html).

#### EMA and Bollinger Bands

Expand Down Expand Up @@ -443,7 +443,7 @@ ggplot2$autoplot(micro) +
values = c("ttr_bb_naked" = "red", "ttr_bb_wrapped" = "red", "dmplot_bb" = "green")
) +
ggplot2$labs(
title = "dmpplot vs TTR BBands"
title = "dmplot::bb vs TTR::BBands"
) +
ggplot2$theme(legend.position = "none")
```
Expand All @@ -454,8 +454,8 @@ ggplot2$autoplot(micro) +

print(micro)
#> Unit: microseconds
#> expr min lq mean median uq max neval
#> ttr_bb_naked 534.640 576.583 595.2441 596.509 604.4425 667.890 20
#> ttr_bb_wrapped 704.134 723.404 819.9221 736.196 764.5270 1993.994 20
#> dmplot_bb 86.182 96.842 211.4596 108.445 133.0860 2066.195 20
#> expr min lq mean median uq max neval
#> ttr_bb_naked 468.261 535.7060 791.4271 577.5670 637.8985 4237.104 20
#> ttr_bb_wrapped 600.035 663.9950 1310.0751 672.9125 722.3790 5482.561 20
#> dmplot_bb 94.259 111.2945 841.5270 127.1205 159.2235 12897.411 20
```
Binary file modified man/figures/README-benchmark-bollinger-bands-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/README-monte-carlo-simulation-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/README-monte-carlo-simulation-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/README-monte-carlo-simulation-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/README-pca-plot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/README-volcano-plot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added man/figures/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ navbar:
text: Articles
menu:
- text: "Getting Started with the dmplot framework for finance"
href: articles/fin_getting-started-with-the-dmplot-framwork-for-finance.html
href: articles/fin_getting-started-with-the-dmplot-framework-for-finance.html
- text: "Intro to Financial Indicators with dmplot"
href: articles/fin_intro-to-financial-indicators-with-dmplot.html
- text: "C++ high-performance technical indicators"
Expand Down
Loading