This is the codebase for the IEEE VIS 2023 publication "EVM: Incorporating Model Checking into Exploratory Visual Analysis". A preliminary version of work is also presented in Chapter 6 of Alex Kale's dissertation. You can find a live version of the interface at https://mucollective.github.io/evm/.
EVM relies on an R backend hosted by OpenCPU. You can find the backend code at https://github.com/kalealex/modelcheck
Study planning materials are at https://github.com/kalealex/exploratory-modeling-eval
Install the dependencies...
cd interface
npm install
sh scripts/semverFix.sh
...then start Rollup:
npm run dev
Navigate to localhost:5555. You should see your app running. Edit a component file in src
, save it, and reload the page to see your changes. We used port 5555 because port 5000 will be occupied for users of Mac OS v12 (Monterey). You can change the port by opening package.json
and editing the value of { "scripts": {... "start": "sirv public --no-clear --port 5555" }}
.
By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the sirv
commands in package.json to include the option --host 0.0.0.0
.
If you're using Visual Studio Code we recommend installing the official extension Svelte for VS Code. If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.
To create an optimised version of the app:
npm run build
You can run the newly built app with npm run start
. This uses sirv, which is included in your package.json's dependencies
so that the app will work when you deploy to platforms like Heroku.
By default, sirv will only respond to requests that match files in public
. This is to maximise compatibility with static fileservers, allowing you to deploy your app anywhere.
If you're building a single-page app (SPA) with multiple routes, sirv needs to be able to respond to requests for any path. You can make it so by editing the "start"
command in package.json:
"start": "sirv public --single"
This template comes with a script to set up a TypeScript development environment, you can run it immediately after cloning the template with:
node scripts/setupTypeScript.js
Or remove the script via:
rm scripts/setupTypeScript.js
If you want to use baseUrl
or path
aliases within your tsconfig
, you need to set up @rollup/plugin-alias
to tell Rollup to resolve the aliases. For more info, see this StackOverflow question.
With Vercel
Install vercel
if you haven't already:
npm install -g vercel
Then, from within your project folder:
cd public
vercel deploy --name my-project
With surge
Install surge
if you haven't already:
npm install -g surge
Then, from within your project folder:
npm run build
surge public my-project.surge.sh
This template provides a interface to save all user interaction logs to database. You need to get access to the "evm-interaction-logs" project by contacting the contributors.
Setting up your client credentials if needed (see this guide for using client credential to authenticate the API).
You may want to save the client secret JSON file into this directory, and note the file path for later.
Install the dependencies...
cd backend
pip install -r requirements.txt
...run the backend:
python app.py <PATH_TO_CLIENT_SECRET> <PROJECT_NAME>
If you don't need to save the logs, you can turn it off by changing logSave
to false
in src/App.svelte
.
...
let modelChecking = false;
let userId = '';
const logSave = false;
// const logSave = true;
const logSaveUrl = uri => `http://127.0.0.1:8000${uri}`;
const updateLogs = async (info) => {
if (!logSave) {
...
This template also provides python scripts to fetch data from Google cloud database and construct the logs into tree structure. You need to get a Google Cloud database first (Follow instructions in previous part to build a database and connect to it).
Install the dependencies...
cd data_analysis
pip install -r requirements.txt
...run the script
python main.py <PATH_TO_CLIENT_SECRET> <PROJECT_NAME>
The client secret and project name can use the ones used in previous part.
This script will save the raw csv files fetched from database into out/raw
and save the tree structure json into out/tree
. The files will be named as the date and time when being generated.
Use the path of tree's version you want to visualize.
fetch("test.json") // replace test.json with your json's path
.then(response => response.json())
.then(json => {
console.log('load test.js')
const treeData = json;
let nodes = d3.hierarchy(treeData, d => d.children);
Build a simple http server using Python
.
cd visualization
python -m http.server
Access the visualization in localhost
(default port is 8000
).
Whenever you clone this repo, access ./node_modules/semver/ranges
directory and open outside.js
and subset.js
.
Comment out line 3 of each file (which is const { ANY } = Comparator
).
Then, add const ANY = Symbol('SemVer ANY')
below line 3.
This is (presumably) due to async error while loading Comparator component of Semver with require
function.
Or, simply run the following script at the exploratory_modeling
directory
interface > sh scripts/semverFix.sh