-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
779 lines (734 loc) · 46.1 KB
/
index.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>R-Instat</title>
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/rinstat_icon_Hih_icon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="images/rinstat_icon_Hih_icon.ico">
<link rel="icon" type="image/png" sizes="96x96" href="images/rinstat_icon_Hih_icon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="images/rinstat_icon_Hih_icon.ico">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WMRQBS0CN7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WMRQBS0CN7');
</script>
</head>
<body>
<section class="banner" role="banner">
<header id="header">
<div class="header-content clearfix">
<a class="logo" href="#"><img src="" alt=""></a>
<nav class="navigation" role="navigation">
<ul class="primary-nav">
<li><a href="#about">About</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#documentation">Documentation</a></li>
<li><a href="#teams">Our Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<a href="#" class="nav-toggle">Menu<span></span></a>
</div><!-- header content -->
</header><!-- header -->
<!--<div class="container">
<div class="col-md-10 col-md-offset-1">
<div class="banner-text text-center">
<h1>R-Instat</h1>
<p>R-Instat is a free, open-source statistical software that is easy to use, even with low computer
literacy. It encourages good statistical practices and learning, by opening the door for
training to emphasise concepts rather than theory.</p>
<a href="https://downloads.r-instat.org/R-Instat_0.7.16.50_Installer_64.exe" class="btn btn-large">Download R-Instat
0.7.16</a>
</div> banner text -->
<!-- </div> -->
<!-- </div> -->
</section><!-- banner -->
<section class="image-text-section" id="about" style="padding: 5% 0 0 0;">
<div class="image">
<h1>R-Instat</h1>
<img src="images/instat_demo1.png" width="95%" alt="" alt="Image Description">
</div>
<div class="text">
<h2>Outline and History</h2>
<p>Good statistical understanding can be easy to learn and should be accessible to everyone. It is
invaluable for informed decision making across disciplines and education levels. The software
development has been led by Africa talent and is intended for a broad-multilingual audience.</p>
<p>R-Instat provides a front-end to R, designed to broaden the users of the software, particularly in
Africa. "R is an open-source programming language and software environment for statistical computing and
graphics that is supported by the R Foundation for Statistical Computing. The R language is widely used
among statisticians and data miners for developing statistical software and data analysis."</p>
<p>R’s reputation has grown incredibly in recent years. General information about R is <a
href="https://www.r-project.org/about.html" target="_blank" class="hover-text">here</a> and it’s
early
history is given <a href="https://www.r-project.org/conferences/useR-2006/Slides/Chambers.pdf"
target="_blank" class="hover-text">here</a>. The original Instat was an easy-to-use statistics
package, produced at the
University of Reading, UK. It was designed to support good statistical practice and included a special
menu for the analysis of historical climatic data. The ideas behind Instat have motivated the structure
of the R-Instat menus and dialogues, though no line of the original code remains.</p>
<p>R-Instat started thanks to a crowd-sourcing campaign in 2015. This 3 minute <a
href="https://www.youtube.com/watch?v=0_YAjLBVPrI&t=1s" target="_blank" class="hover-text">video</a> from the original
campaign outlines the need for this software.</p>
</div>
</section>
<section id="download" class="features section" style="padding: 2% 0 0 0;">
<div class="container">
<div class="blue-bar"></div>
<!-- <div class="row"> -->
<h2 style="text-align: center;">Download R-Instat</h2>
<p>In response to the recent <a href="https://www.r-project.org/about.html" target="_blank"
class="hover-text">review of R-Instat</a> by Bob Muenchen we continue to develop new
versions of
R-Instat. Many thanks to Bob for reviewing R-Instat.</p>
<div class="left-text1">
<p>Latest stable release 0.7.16</p>
</div>
<div class="table-header">
<table>
<thead class="transparent-header">
<tr>
<th style="border-right: none;">Release version</th>
<th style="border-right: none;">Release date</th>
<th style="border-right: none;">Click to download</th>
<th style="border-right: none;">Click for more</th>
</tr>
</thead>
</table>
</div>
<div class="table-container">
<table class="second-table">
<tbody>
<tr>
<td>R-Instat 0.7.16 (64-bit)</td>
<td>July 16, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.16.50_Installer_64.exe" download><ion-icon
name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.16 (32-bit)</td>
<td>July 16, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.16.50_Installer_32.exe" download><ion-icon
name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
</tbody>
</table>
</div>
<div class="left-text1">
<p>Looking for a specific release?</p>
</div>
<!-- <div class="left-text5">
<p>R-Instat releases by version number for 64-bit:</p>
</div> -->
<div class="accordion">
<div class="accordion-item">
<div class="accordion-header">
R-Instat releases by version number for 64-bit: <span class="toggle-button">+</span>
</div>
<div class="accordion-content">
<div class="table-header">
<table>
<thead class="transparent-header">
<tr>
<th style="border-right: none;">Release version</th>
<th style="border-right: none;">Release date</th>
<th style="border-right: none;">Click to download</th>
<th style="border-right: none;">Click for more</th>
</tr>
</thead>
</table>
</div>
<div class="table-container">
<table class="second-table">
<tbody>
<tr>
<td>R-Instat 0.8.2 [beta]</td>
<td>February 12, 2025</td>
<td><a href="https://storage.googleapis.com/r-instat-download/R-Instat_0.8.2.97_Installer_64.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.8.1 [beta]</td>
<td>January 15, 2025</td>
<td><a href="https://storage.googleapis.com/r-instat-download/R-Instat_0.8.1.91_Installer_64.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.8.0 [beta]</td>
<td>November 08, 2024</td>
<td><a href="https://storage.googleapis.com/r-instat-download/R-Instat_0.8.0.89_Installer_64.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/IDEMSInternational/R-Instat/releases/tag/v0.7.16"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.16 [stable]</td>
<td>July 16, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.16.50_Installer_64.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.15 [stable]</td>
<td>July 16, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.15.49_Installer_64.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.12 [stable]</td>
<td>May 25, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.12.46_Installer_64.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.12"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.10 [stable]</td>
<td>March 3, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.10.43_Installer_64.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.10"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.9 [stable]</td>
<td>March 3, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.9.41_Installer_64.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.9"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.8 [stable]</td>
<td>Jan. 31, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0_7_8_Installer_64.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.8"
target="_blank" download>Release Notes</a></td>
</tr>
</tbody>
<!-- Add more rows as needed -->
</table>
</div>
</div>
</div>
</div>
<div class="accordion32">
<div class="accordion-item">
<div class="accordion-header">
R-Instat releases by version number for 32-bit: <span class="toggle-button">+</span>
</div>
<div class="accordion-content">
<div class="table-header">
<table>
<thead class="transparent-header">
<tr>
<th style="border-right: none;">Release version</th>
<th style="border-right: none;">Release date</th>
<th style="border-right: none;">Click to download</th>
<th style="border-right: none;">Click for more</th>
</tr>
</thead>
</table>
</div>
<div class="table-container">
<table class="second-table">
<tbody>
<tr>
<td>R-Instat 0.7.16 [stable]</td>
<td>July 16, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.16.50_Installer_32.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.15 [stable]</td>
<td>July 16, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.15.49_Installer_32.exe"
download><ion-icon name="download-outline"
class="icon"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.15"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.12 [stable]</td>
<td>May 25, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.12.46_Installer_32.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.12"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.10 [stable]</td>
<td>March 3, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.10.43_Installer_32.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.10"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.9 [stable]</td>
<td>March 3, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0.7.9.41_Installer_32.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.9"
target="_blank" download>Release Notes</a></td>
</tr>
<tr>
<td>R-Instat 0.7.8 [stable]</td>
<td>Jan. 31, 2023</td>
<td><a href="https://downloads.r-instat.org/R-Instat_0_7_8_Installer_32.exe"
download><ion-icon name="download-outline"></ion-icon>Download</a></td>
<td><a href="https://github.com/africanmathsinitiative/R-Instat/releases/tag/v0.7.8"
target="_blank" download>Release Notes</a></td>
</tr>
</tbody>
<!-- Add more rows as needed -->
</table>
</div>
</div>
</div>
</div>
<!-- <div class="left-text4">
<p>R-Instat releases by version number for 32-bit:</p>
</div> -->
<div class="left-text3">
<p>R-Instat is currently a Windows only application. However, it can be accessed on Mac or Linux
through use of a Virtual Windows Machine.</p>
</div>
<div class="left-text1">
<p>Prerequisite Software</p>
</div>
<div class="left-text2">
<div class="r-div">
<p> <a href="https://dotnet.microsoft.com/en-us/download" target="_blank" class="hover-text">.NET
Framework</a> : R-Instat is a .NET software and requires an up to
date version of the .NET (at least
4.6.1) to be installed before it can run. Most new Windows version already have this. The
installation process will tell you if your .NET needs to be updated. If you need to download
it,
you
can <a href="https://dotnet.microsoft.com/en-us/download" target="_blank"
class="hover-text">download .NET
Framework here</a>.</p>
</div>
<div class="r-div">
<p><a href="https://cran.r-project.org/bin/windows/Rtools/" target="_blank"
class="hover-text">Rtools</a>: R-Instat
requires Rtools to export data to Excel files. If
you
do not intend to use this
feature, you do not need to download Rtools. If you would like to you can <a href=""
target="_blank" class="hover-text">download Rtools here</a>.</p>
</div>
</div>
<div class="left-text1">
<p>R</p>
</div>
<div class="left-text2">
<p><a href="https://cran.r-project.org/" target="_blank" class="hover-text">R</a>: R-Instat
includes a
built in copy of R, which performs all data
processing in R-Instat. You do not
need to download R separately to use R-Instat. If you would like to know more about R <a
href="https://cran.r-project.org/" target="_blank" class="hover-text">click
here</a>.
</p>
</div>
<!-- </div> -->
</div>
</section>
<!--documentation-->
<section id="documentation" class="works section no-padding" style="padding: 2% 0 0 0;">
<div class="container">
<div class="blue-bar"></div>
<h2 style="text-align: center; margin-bottom: 30px;">Documentation</h2>
<div class="left-text2">
<div class="r-div">
<p>Documentation for R-Instat’s core features, along with tutorials and guides, is available online <a href="https://ecampus.r-instat.org/course/view.php?id=14"
target="_blank" class="hover-text">ecampus.r-instat.org</a>.</p>
</div>
</div>
<div class="left-text1">
<!-- <p><a href="https://ecampus.r-instat.org/course/view.php?id=14"
target="_blank" class="hover-text">ecampus.r-instat.org</a></p> -->
<img src="images/materials.png" width="95%" alt="" alt="Image Description">
</div>
<!-- <div class="left-text2">
<div class="r-div">
<p>We strongly recommend following the installation guide the first time you install R-Instat.</p>
</div>
<div class="r-div">
<p>Installation guide: <a href="https://r-instat.org/Resources/Installation-Guide.pdf"
target="_blank" class="hover-text">PDF version</a> or <a
href="https://github.com/africanmathsinitiative/R-Instat/wiki/Installation-Guide"
target="_blank" class="hover-text">Online version</a>.</p>
</div>
</div>
<div class="left-text1">
<p>Introductory Tutorials</p>
</div>
<div class="left-text2">
<div class="r-div">
<p>If you are new to R-Instat, these tutorials are a good way to begin to familiarise yourself
with how it works using real and interesting data sets.</p>
</div>
<div class="r-div">
<p>Part 1: Describing Data <a
href="https://r-instat.org/Resources/Introductory-Tutorial--Part-1---Describing-Data.pdf"
target="_blank" class="hover-text">PDF version</a></p>
</div>
<div class="r-div">
<p>Part 2: A Second Data Set <a
href="https://r-instat.org/Resources/Introductory-Tutorial--Part-2---A-Second-Data-Set.pdf"
target="_blank" class="hover-text">PDF version</a></p>
</div>
<div class="r-div">
<p>Part 3: Working with Labelled Data <a
href="https://r-instat.org/Resources/Introductory-Tutorial--Part-3---Working-with-Labelled-Data.pdf"
target="_blank" class="hover-text">PDF
version</a></p>
</div>
</div>
<div class="left-text1">
<p>Climatic Guide</p>
</div>
<div class="left-text2">
<div class="r-div">
<p>R-Instat includes a special climatic menu for the analysis for historical climatic data. The
Climatic Guide is a comprehensive guide to R-Instat's climatic functionalities.</p>
</div>
<div class="r-div">
<p>R-Instat Climatic Guide <a
href="https://drive.google.com/file/d/1YG5NMWov5qPbU9CKZDgaPcEgT4Oelduo/view"
target="_blank" class="hover-text">PDF version (48MB)</a></p>
</div>
</div>
<div class="left-text1">
<p>Tutorial Videos</p>
</div>
<div class="left-text2">
<div class="r-div">
<p>We have a growing collection of tutorial videos for R-Instat. Go to our <a
href="https://www.youtube.com/channel/UCUprzjp27nBwycQZod_LGgw/videos" target="_blank"
class="hover-text">YouTube Channel</a> to see
the current collection.</p>
</div>
</div>
<div class="left-text1">
<p>Built in Help</p>
</div>
<div class="left-text2">
<div class="r-div">
<p>Comprehensive help for each R-Instat dialog will be implemented soon. This will be accessible
through the Help button on each dialog, or the Help menu. As well as help on using the dialog,
there will also be information about the R code and packages behind them, including direct links
to R's documentation where appropriate.</p>
</div>
</div>-->
</div>
</section> <!--documentation-->
<section id="teams" class="section teams" style="padding: 2% 0;">
<div class="container">
<div class="blue-bar"></div>
<h2 style="text-align: center;">Our Team</h2>
<div class="team_text">
<p>We have a team of experienced statisticians and software developers dedicated to providing high-quality statistical software.</p>
</div>
<!-- Team Container with navigation buttons -->
<div class="team-wrapper">
<button class="prev-btn" aria-label="Scroll Left">‹</button>
<div class="team-container">
<!-- Each team member will go inside this container -->
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/nthony.jpg" alt="Antoine Ntalumeso" class="img-responsive">
</div>
<div class="person-content">
<h4>Antoine Ntalumeso</h4>
<h5 class="role">Software Developer</h5>
<p>Antoine has a passion for both logic and creativity, bringing a unique blend of computer science to the team.</p>
</div>
</div>
</div>
<!-- More team members here -->
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/Patrick-2-e1669047988175-150x150.jpg" alt="Patrick Munyoki" class="img-responsive">
</div>
<div class="person-content">
<h4>Patrick Munyoki</h4>
<h5 class="role">Software Developer</h5>
<p>Patrick has broad experience in software development, gained over several years working as a consultant for small and medium-sized companies.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/lily.jpg" alt="Lily Clements" class="img-responsive">
</div>
<div class="person-content">
<h4>Lily Clements</h4>
<h5 class="role">Data Scientist</h5>
<p>Lily is a statistician who has recently completed her PhD. She is involved in a number of exciting projects across IDEMS, with work concentrated mainly in using the statistical software, R.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/vitalis.jpg" alt="Vitalis Kwambai" class="img-responsive">
</div>
<div class="person-content">
<h4>Vitalis Kwambai</h4>
<h5 class="role">Software Developer</h5>
<p>Vitalis Kwambai is a degree holder in B.Sc. Applied Statistics from Maseno University. Vitalis is doing master degree in Applied Statistics from the same University and currently he is doing research work in climatology.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/beryl.jpg" alt="Beryl Waswa" class="img-responsive">
</div>
<div class="person-content">
<h4>Beryl Waswa</h4>
<h5 class="role">Documentation Specialist</h5>
<p>Beryl Waswa has a background in Actuarial Science and is currently working as a Documentation Specialist and Office Manager at INNODEMS. Beryl documents how to use R-Instat for end users. </p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/sophie.jpg" alt="Sophie Malla" class="img-responsive">
</div>
<div class="person-content">
<h4>Sophie Malla</h4>
<h5 class="role">Software Developer</h5>
<p>Sophie is passionate about applied science. She is always enthusiastic about learning new things and sharing her knowledge. She has a master's degree in applied physics and mathematics applied to climate modelling.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/Derick.jpg" alt="Derrick Agorhom" class="img-responsive">
</div>
<div class="person-content">
<h4>Derrick Agorhom</h4>
<h5 class="role">Software Developer</h5>
<p>Derrick is passionate about software development. He has a background in Computer Science and Mathematics. His primary focus revolves around crafting innovative systems and applications that tackle real-world challenges through technology.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/fidel.jpeg" alt="Fidel Lumbasi" class="img-responsive">
</div>
<div class="person-content">
<h4>Fidel Lumbasi</h4>
<h5 class="role">Software Developer</h5>
<p>Fidel's expertise lies in computer science, and he currently serves as a software developer at INNODEMS, contributing to the testing and development of various projects.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/roger.jpg" alt="Roger Stern" class="img-responsive">
</div>
<div class="person-content">
<h4>Roger Stern</h4>
<h5 class="role">SENIOR STATISTICIAN</h5>
<p>Roger’s main interests include improving the teaching of statistics at all levels. He also works closely with Meteorological Services in many countries to support more use of their historical climatic data.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/david.jpg" alt="David Stern" class="img-responsive">
</div>
<div class="person-content">
<h4>David Stern</h4>
<h5 class="role">SENIOR STATISTICIAN</h5>
<p>David's interests in mathematics are very broad, including statistics and computing. He previously worked as a computer programmer in the UK, in software development.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/danny-headshot-150x150.jpg" alt="Danny Parsons" class="img-responsive">
</div>
<div class="person-content">
<h4>Danny Parsons</h4>
<h5 class="role">SENIOR STATISTICIAN</h5>
<p>Danny completed his Masters in Mathematics at the University of Warwick, UK. During his undergraduate degree, Danny also had a keen interest in Mathematics education and spent two summers teaching in Primary and High Schools in the Kibera slums of Nairobi, Kenya.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/chris-150x150.jpg" alt="Chris Marsh" class="img-responsive">
</div>
<div class="person-content">
<h4>Chris Marsh</h4>
<h5 class="role">Software Developer</h5>
<p>Chris is an experienced software developer who has worked in a variety of sectors over his 20 year career. He has managed teams of software developers and coordinated large development projects.</p>
</div>
</div>
</div>
<div class="team-member">
<div class="person">
<div class="image-container">
<img src="images/team-img/stephenSquareCropped-300x300.jpg" alt="Stephen Lloyd" class="img-responsive">
</div>
<div class="person-content">
<h4>Stephen Lloyd</h4>
<h5 class="role">SENIOR SOFTWARE ENGINEER</h5>
<p>Stephen has worked on many international software projects. He is especially interested in software development using distributed teams. He is providing analysis, implementation, coordination and mentoring support to IDEMS’ software projects.</p>
</div>
</div>
</div>
<!-- Add remaining team members... -->
</div> <!-- team-container -->
<button class="next-btn" aria-label="Scroll Right">›</button>
</div> <!-- team-wrapper -->
</div> <!-- container -->
</section> <!-- teams -->
<!--contact-->
<section id="contact" class="features section" style="padding: 2% 0 0 0;">
<div class="container">
<div class="blue-bar"></div>
<div class="developer">
<h2>Contact</h2>
<form id="contact-form" action="https://formspree.io/f/xqkvkrvn" method="POST">
<input type="text" name="name" placeholder="Your name" required>
<input type="email" name="email" placeholder="Your email" required>
<textarea type="message" name="message" placeholder="Your message" required></textarea>
<button type="submit" class="btn_submit">Submit</button>
</form>
</div>
<div class="developer">
<p>To report issues or bugs with the software, please post an issue on our <a
href="https://github.com/africanmathsinitiative/R-Instat/issues/" target="_blank"
class="hover-text">Github Issues
page</a>.</p>
</div>
<div class="developer">
<p>We are more than happy to welcome any developer to take on the task of making R-Instat better.</p>
<p>We welcome you to get a copy of source code in our <a class="hover-text"
href="https://github.com/africanmathsinitiative/R-Instat/" target="_blank">
Github page</a>.</p>
</div>
</div>
</section> <!--contact-->
<footer class="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<h5>Location</h5>
<p>Maseno<br>Kenya</p>
</div>
<div class="footer-col col-md-4">
<h5>Join us</h5>
<ul class="footer-share">
<li><a href=""><i class="fa fa-facebook"></i></a></li>
<li><a href=""><i class="fa fa-twitter"></i></a></li>
<li><a href=""><i class="fa fa-linkedin"></i></a>
<li><a href="https://www.youtube.com/@RInstat" target="_blank"><i
class="fa fa-youtube"></i></a>
</li>
</ul>
</div>
<div class="footer-col col-md-4">
<h5>Download</h5>
<p>Latest: <b> <a href="https://downloads.r-instat.org/R-Instat_0.7.16.50_Installer_64.exe" download>R-instat
0.7.16</a></b></p>
</div>
</div>
</div>
</div>
<!-- footer top -->
<div class="footer-bottom">
<div class="container">
<div class="col-md-12">
<p>Copyright © 2023 R-Instat. All Rights Reserved<!-- <br>Made with <i class="fa fa-heart pulse"></i> by
<a href="http://kamalchaneman.com/">Kamal Chaneman</a> -->
</p>
</div>
</div>
</div>
</footer><!-- footer -->
<a href="#" class="scroll-to-top-btn">
<ion-icon name="chevron-up-outline"></ion-icon>
</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.flexslider-min.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/retina.min.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/main.js"></script>
<script src="js/scrolling.js"></script>
<script src="js/accordion.js"></script>
<script src="js/nextbtn.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-XXXX-X');
ga('send', 'pageview');
</script>
</body>
</html>