-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfaq.html
95 lines (90 loc) · 4.04 KB
/
faq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE HTML>
<html>
<head>
<title>ISLE - FAQ</title>
<link rel="shortcut icon" href="images/favicon.png" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin|Noto+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/custom.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<a href="index.html">
<img class="subpage-logo" src="images/isle_icon_transparent.png" />
</a>
<span class="full-title">
<a href="index.html" class="title">Integrated Statistics Learning Environment</a>
</span>
<span class="short-title">
<a href="index.html" class="title">ISLE</a>
</span>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="faq.html" class="active">FAQ</a></li>
<li><a href="widgets.html">Widgets</a></li>
<li><a href="data_explorers.html">Explorers</a></li>
</ul>
</nav>
</header>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<section id="main" class="wrapper">
<div class="inner">
<h1 class="major">Frequently Asked Questions</h1>
<h2>How can I integrate ISLE into my class?</h2>
<p>
Instructors may use any of the existing widgets or our prebuilt data explorers. If interested in customized ISLE lessons for computer labs, to use the sketchpad and classroom response system functionality in lectures, or full course integration with the ISLE dashboard, please get in touch.
</p>
<hr />
<h2>Is ISLE ready to use?</h2>
<p>
ISLE is currently under active development and available as a beta version. It has been successfully used at Carnegie Mellon University in classes for the last two and a half years and at several other institutions since 2019.
</p>
<hr />
<h2>Can custom datasets be used in a data explorer?</h2>
<p>
Yes, ISLE comes with functionality for uploading any data set in CSV format into a custom data explorer via a simple drag-and-drop interface.
</p>
<hr />
<h2>Can I build my own ISLE lessons?</h2>
<p>
Yes, the ISLE allows one to build new lessons or update existing ones. Markdown syntax can be used to write simple markup, and a point-and-click interface allows one to easily insert existing ISLE components. Lessons are fully customizable through usage of CSS, HTML, and JavaScript.
</p>
<hr />
<h2>Where can I find information on how to author my own ISLE lessons?</h2>
<p>
The project documentation website at <a href="https://isledocs.com">isledocs.com</a> contains various tutorials and documentation on the various components that can be used when authoring ISLE lessons via the accompanying editor.
</p>
<hr />
<h2>How can I contribute to the development of ISLE?</h2>
<p>
Development of ISLE happens on GitHub in the <a href="https://github.com/isle-project">isle-project</a> organization. Feel free to reach out to <a href = "mailto:[email protected]">Philipp Burckhardt</a> and we will get back to you with more details.
</p>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="wrapper style2">
<div style="padding: 25px; font-size: 0.6em" >
<ul class="menu">
<li style="color: black;">© 2020. The ISLE Team. All rights reserved.</li>
<li style="color: black;">Design adapted from: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>