-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
291 lines (286 loc) · 10.6 KB
/
index.html
File metadata and controls
291 lines (286 loc) · 10.6 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lcpmgh</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f3f7;
}
header {
background-color: #4a8dc5;
color: #fff;
padding: 5px 5px;
text-align: center;
}
.container {
width: 90%;
margin: 10px auto;
}
.category {
margin-bottom: 5px;
}
.category h2 {
text-align:center;
margin: 10px 0;
color: #333;
}
.apps {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.app {
background-color: #fff;
padding: 10px;
margin: 5px 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 22%;
display: flex;
flex-direction: column;
align-items: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.app:hover {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.app img {
width: 75%;
height: auto;
aspect-ratio: 1.6 / 1;
margin: 0 auto;
display: block;
border-radius: 5px;
border: 2px solid #008DCF; /* 天蓝色边框 */
}
.app h4 {
margin: 2px 0px;
font-size: 0.9em;
}
.app p {
margin: 2px 3px;
font-size: 0.9em;
}
.app a {
margin-top: 10px;
font-weight: bold;
font-size: 1.0em;
color: black;
text-decoration: none;
}
.app a:hover {
text-decoration: none;
}
#footer-container {
text-align: center;
font-size: 13px;
color: #666666;
line-height: 0.8;
margin: 12px 0;
}
#footer-container a {
color: #0066cc;
text-decoration: none;
margin: 0 2px;
}
.footer-links,
.footer-records {
display: inline-flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.footer-links i {
margin-right: 4px;
}
</style>
<link rel="shortcut icon" href="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/pmgh.ico"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<h2 style="margin:5px 10px; text-align:left;">Rshiny Apps</h2>
</header>
<div class="container">
<div class="category">
<h2>使用Shiny创建的工具和笔记</h2>
<div class="apps">
<div class="app">
<a href="http://lcpmgh.com/scus">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_scus.png" alt="SCUS">
</a>
<h4>泥沙贡献分解软件 (SCUS)</h4>
<p>侵蚀泥沙指纹识别技术的绘图、检验和求解</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/journal">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_journal.png" alt="journal">
</a>
<h4>学术期刊质量查询系统</h4>
<p>中英学术期刊质量信息汇总</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/chemical">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_chemical.png" alt="chemical">
</a>
<h4>化学分子量计算器</h4>
<p>根据化学式计算分子量及元素占比</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/colors">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_colors.png" alt="colors">
</a>
<h4>科研绘图配色推荐器</h4>
<p>收集自顶刊论文的绘图配色方案</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/cpmcm-awards">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/aaapicture/app_cpmcm-awards.png" alt="cpmcm-awards">
</a>
<h4>中国研究生数学建模竞赛获奖信息可视化</h4>
<p>数模研赛举办以来的历年获奖情况统计</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/ggplot2academic.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnggacademic.png" alt="learnggacademic">
</a>
<h4>ggplot2科研绘图案例</h4>
<p>科研绘图场景中的ggplot2案例教程</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/MixSIAR_note.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnmixsiar.png" alt="learnmixsiar">
</a>
<h4>MixSIAR案例笔记</h4>
<p>贝叶斯物源分析工具MixSIAR的使用笔记</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/ggplot2matplotlib50.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnggmatplotlib50.png" alt="learnggmatplotlib50">
</a>
<h4>ggplot2版50个matplotlib常用可视化图</h4>
<p>用ggplot2复刻50个matplotlib常用可视化图</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/learn_rda.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnrda.png" alt="learnrda">
</a>
<h4>RDA笔记</h4>
<p>R语言冗余分析笔记</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/learn_brms.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnbrms.png" alt="learnbrms">
</a>
<h4>brms笔记</h4>
<p>贝叶斯建模brms包笔记</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/learn_echarty_map.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnechartymap.png" alt="learnechartymap">
</a>
<h4>echarty画地图笔记</h4>
<p>使用echarty实现ECharts地图</p>
</div>
<div class="app">
<a href="https://lcpmgh.github.io/tempfiles/Rnote/statistic_test.html">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_learnstatistictest.png" alt="learnstatistictest">
</a>
<h4>统计检验笔记</h4>
<p>总结常用统计检验的理论与R代码</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/smooth">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_smooth.png" alt="smooth">
</a>
<h4>PDF文字复制优化</h4>
<p>将从PDF复制的文字优化为无换行半角纯文本</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/compare">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_compare.png" alt="compare">
</a>
<h4>文本对比</h4>
<p>比较两段文本的差异</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/chinese">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_chinese.png" alt="chinese">
</a>
<h4>中文字符简繁转换</h4>
<p>利用pyton opencc库转换中文字符简繁体</p>
</div>
<div class="app">
<a href="http://lcpmgh.com/count">
<img src="https://lcpmgh.github.io/tempfiles/Rnote/aaapicture/app_count.png" alt="count">
</a>
<h4>计数程序</h4>
<p>计数程序</p>
</div>
<!-- 继续添加更多:科研工具apps -->
</div>
</div>
<!--
<div class="category">
<h2>其他工具和教程</h2>
<div class="apps">
</div>
</div>
<div class="category">
<h2>其他工具</h2>
<div class="apps">
<div class="app">
<a href="http://lcpmgh.com/investment">
<img src="aaapicture/app_investment.png" alt="investment">
</a>
<h4>投资理财可视化</h4>
<p>某理财产品业绩情况的爬虫和可视化</p>
</div>
</div>
</div>
-->
<!-- 继续添加更多category -->
</div>
<footer id="footer-container">
<p>
© <span id="copyright-year"></span>, Lcpmgh. All rights reserved.
</p>
<div class="footer-links">
<a href="https://github.com/lcpmgh" target="_blank">
<i class="fa-brands fa-github"></i> lcpmgh
</a>
<a href="mailto:lcpmgh@gmail.com">
<i class="fa-solid fa-envelope"></i> lcpmgh@gmail.com
</a>
<a href="http://lcpmgh.com/" target="_blank">
<i class="fa-solid fa-house"></i> lcpmgh.com
</a>
</div>
<div class="footer-records">
<a href="https://beian.miit.gov.cn" target="_blank">
冀ICP备2022003075号
</a>
<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702002736" target="_blank">
川公网安备51010702002736
</a>
</div>
</footer>
<script>
(function () {
const startYear = 2021;
const currentYear = new Date().getFullYear();
const yearText =
currentYear > startYear
? `${startYear}–${currentYear}`
: `${startYear}`;
document.getElementById("copyright-year").textContent = yearText;
})();
</script>
</body>
</html>