Skip to content

Commit

Permalink
try to fix figure width and height
Browse files Browse the repository at this point in the history
  • Loading branch information
wanghui5801 committed Dec 16, 2024
1 parent a9db60b commit 6565cbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vignettes/matrix.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,19 @@ Then we can visualize the result by `plotMatrix` function.
- positive status

```{r}
plot(result, "positive", asp = 1)
plot(result, "positive") + ggplot2::coord_fixed()
```

- negative status

```{r}
plot(result, "negative", asp = 1)
plot(result, "negative") + ggplot2::coord_fixed()
```

- dark status

```{r}
plot(result, "dark", asp = 1)
plot(result, "dark") + ggplot2::coord_fixed()
```

We could see that there is a obvious positive connection in this system.
Expand All @@ -112,5 +112,5 @@ print(effects)
Then we could observe the total effect in pattern causality.

```{r}
plot(effects, status="negative", asp = 1)
plot(effects, status="negative") + ggplot2::coord_fixed()
```

0 comments on commit 6565cbc

Please sign in to comment.