Data 8 学习笔记(一)
Data 8 学习笔记(一)介绍DATA 8 是加州大学伯克利分校的数据科学基础课程,使用的编程语言为python。课程资源: 课程官网 包含了课程视频,课上ppt,但是作业需要UCB的账号。视频在Youtube可以找到,目前最新的是2022Spring(最新的人家不可能让你免费看嘛) Github 课程作业 包含课堂同步Jupiter notebook还有lab, hw, project以及最重量级的textbook。最新的是2025Spring(太良心了)。 具体的配置很简单,主要是使用numpy, panda, matplotlib, 还有UCB自己的datascience这几个python库。 datascience library安装(在terminal, cmd): npm install datascience 这个库属于UCB为了初学者专门创建的preliminary tool,它主要操作的数据类型是库里定义的Table。就如同它的名字一样,Table就是个表格,每一列都是一个np...
Markdown Fundamentals
Learn Markdown Markdown is a lightweight markup language for creating formatted text using a plain-text editor.Wikipedia I have always wondered why in Github some repos have beautifully documented readme section. Therefore, I decided to learn to create .md files for my readmes and posts. Markdown is widely used in various occasions, including Github readme.md, almost any post you see online and post in university forums, like ed. HTMLWe must note that md supports raw HTML, so we can use...
My First Blog~
我的第一个博客~Hello World1print('Hello World') 1System.out.println("Hello World") 1234int main() { cout << "Hello World" << endl; return 0;} 1console.log("Hello, World!");