Commit 5961fc84 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

feat: seaborn added to pyodide


Co-Authored-By: default avatarSilentoplayz <50341825+Silentoplayz@users.noreply.github.com>
parent a5fa881d
......@@ -6,7 +6,8 @@ const packages = [
'matplotlib',
'scikit-learn',
'scipy',
'regex'
'regex',
'seaborn'
];
import { loadPyodide } from 'pyodide';
......
......@@ -186,7 +186,8 @@
code.includes('matplotlib') ? 'matplotlib' : null,
code.includes('sklearn') ? 'scikit-learn' : null,
code.includes('scipy') ? 'scipy' : null,
code.includes('re') ? 'regex' : null
code.includes('re') ? 'regex' : null,
code.includes('seaborn') ? 'seaborn' : null
].filter(Boolean);
console.log(packages);
......@@ -235,7 +236,8 @@ __builtins__.input = input`);
code.includes('pandas') ? 'pandas' : null,
code.includes('sklearn') ? 'scikit-learn' : null,
code.includes('scipy') ? 'scipy' : null,
code.includes('re') ? 'regex' : null
code.includes('re') ? 'regex' : null,
code.includes('seaborn') ? 'seaborn' : null
].filter(Boolean);
console.log(packages);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment