Skip to content

Commit

Permalink
set asp parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
wanghui5801 committed Dec 16, 2024
1 parent e0eba7e commit a9db60b
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")
plot(result, "positive", asp = 1)
```

- negative status

```{r}
plot(result, "negative")
plot(result, "negative", asp = 1)
```

- dark status

```{r}
plot(result, "dark")
plot(result, "dark", asp = 1)
```

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")
plot(effects, status="negative", asp = 1)
```

0 comments on commit a9db60b

Please sign in to comment.