-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (85 loc) · 2.27 KB
/
index.html
File metadata and controls
90 lines (85 loc) · 2.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FieldStack</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
margin: 2rem auto;
max-width: 960px;
line-height: 1.6;
padding: 0 1rem;
color: #333;
}
header {
text-align: center;
margin-bottom: 2rem;
}
h1 {
font-size: 2.2rem;
}
.folder-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.folder-card {
padding: 1rem;
border: 1px solid #ccc;
border-radius: 12px;
background: #f9f9f9;
}
.folder-card h3 {
margin: 0 0 0.5rem;
}
footer {
text-align: center;
margin-top: 3rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<header>
<img src="https://raw.githubusercontent.com/Varnasr/FieldStack/main/banner/FieldStack_banner.png" alt="FieldStack banner" style="max-width: 100%; height: auto;" />
<h1>Welcome to FieldStack</h1>
<p>Reusable R tools and workflows for MEL, evaluation, and social research in South Asia.</p>
</header>
<section>
<h2>📁 Modules</h2>
<div class="folder-grid">
<div class="folder-card">
<h3>Evaluation</h3>
<p>SROI, cost-effectiveness, summary tables</p>
</div>
<div class="folder-card">
<h3>Regression</h3>
<p>Interaction effects, multicollinearity, diagnostics</p>
</div>
<div class="folder-card">
<h3>Qualitative</h3>
<p>Text analysis, corpus tools, theme coders</p>
</div>
<div class="folder-card">
<h3>Visualisation</h3>
<p>Bullet, waterfall, and spatial maps</p>
</div>
<div class="folder-card">
<h3>Python Integration</h3>
<p>Use <code>reticulate</code> to embed Python in R</p>
</div>
<div class="folder-card">
<h3>Codebooks & Tools</h3>
<p>Survey templates and monitoring codebooks</p>
</div>
</div>
</section>
<footer>
Made with 💛 by <a href="https://on-web.link/varna">Varna Sri Raman</a> · GitHub: <a href="https://github.com/Varnasr/FieldStack">Varnasr/FieldStack</a>
</footer>
</body>
</html>