Skip to content

Commit 44e7a09

Browse files
committed
init: initialize sample repository for diffs
1 parent 51f9068 commit 44e7a09

File tree

8 files changed

+2234
-0
lines changed

8 files changed

+2234
-0
lines changed

.gitignore

Lines changed: 699 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# How to compare dataflow graphs produced by flowR
2+
3+
This is a sample project that demonstrates how to use the [`flowR`](https://github.com/flowr-analysis/flowr) library to analyze and R projects by comparing their dataflow graphs.
4+
5+
Please note that this is a minimal example.
6+
7+
## Quickstart
8+
9+
1. Clone the repository:
10+
11+
```bash
12+
git clone https://github.com/flowr-analysis/sample-analyzer-df-diff.git
13+
cd sample-analyzer-df-diff
14+
```
15+
16+
2. Install the dependencies:
17+
18+
```bash
19+
npm install
20+
```
21+
22+
3. Run the main script with a project folder and a file to dump the results to:
23+
24+
```bash
25+
npm run main -- samples/file-a.R samples/file-b.R
26+
```
27+
28+
4. Check out the link produced in the console to view the differences between the dataflow graphs.

0 commit comments

Comments
 (0)