Skip to content

Commit

Permalink
Re-generate README
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Jan 11, 2024
1 parent d2ba06b commit d6f22fd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
output: github_document
output:
github_document:
#fig_width: 7
#fig_height: 5 # default is 5
toc: true
toc_depth: 2
---

<!-- README.md is generated from README.Rmd. Please edit that file -->
Expand Down Expand Up @@ -36,8 +41,11 @@ This is a basic example which shows you how to solve a common problem:

```{r}
#| label: example
#| results: "output"
# Load the library
library(drawr)
# Randomly filled matrix
mat_3x5 = matrix(round(rnorm(15, 0, 4), 2), ncol = 5)
# Graphic of matrix data structure using base R graphics
Expand All @@ -47,3 +55,4 @@ visualize_matrix_data(mat_3x5, highlight_cells = mat_3x5 > 0)
visualize_matrix_data_ggplot(mat_3x5, highlight_cells = mat_3x5 > 0)
```


6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

- [drawr](#drawr)
- [Installation](#installation)
- [Example](#example)

<!-- README.md is generated from README.Rmd. Please edit that file -->

# drawr
Expand All @@ -25,8 +29,10 @@ devtools::install_github("coatless-rpkg/drawr")
This is a basic example which shows you how to solve a common problem:

``` r
# Load the library
library(drawr)

# Randomly filled matrix
mat_3x5 = matrix(round(rnorm(15, 0, 4), 2), ncol = 5)

# Graphic of matrix data structure using base R graphics
Expand Down
Binary file modified man/figures/README-example-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-example-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d6f22fd

Please sign in to comment.