1 Star 0 Fork 0

陈狗翔 / stat-learning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
Amir Sadoughi 提交于 2014-09-13 19:53 . Update index.html
<html>
<body>
<h3><i>An Introduction to Statistical Learning</i> Unofficial Solutions</h3>
<p>
<a href="https://github.com/asadoughi/stat-learning">Fork the solutions!</a><br />
<a href="https://twitter.com/princehonest">Twitter me @princehonest</a><br />
<a href="http://www.statlearning.com">Official book website</a><br />
</p>
<p>
Check out Github <a href="https://github.com/asadoughi/stat-learning/issues?state=open">issues</a> and <a href="https://github.com/asadoughi/stat-learning/">repo</a> for the latest updates.
</p>
<script>
exercise_count = [10, 15, 13, 9, 11, 12, 12, 8, 11];
for (var chapter = 2; chapter <= 10; chapter++) {
for (var exercise = 1; exercise <= exercise_count[chapter-2]; exercise++) {
link = "ch" + chapter + "/" + exercise + ".html";
if (chapter == 2) {
if (exercise < 8)
link = "https://raw.githubusercontent.com/asadoughi/stat-learning/master/ch2/answers";
else
link = "https://raw.githubusercontent.com/asadoughi/stat-learning/master/ch2/applied.R";
} else if (chapter == 3) {
if (exercise < 7)
link = "https://raw.githubusercontent.com/asadoughi/stat-learning/master/ch3/answers";
else
link = "ch3/applied.html";
}
document.write("<a href='" + link + "'>Chapter " + chapter + " Exercise " + exercise + "</a>");
document.write("<br />");
}
document.write("<br />");
}
</script>
</body>
</html>
1
https://gitee.com/ChenGouXiang/stat-learning.git
git@gitee.com:ChenGouXiang/stat-learning.git
ChenGouXiang
stat-learning
stat-learning
master

搜索帮助