摘要:
create a new repository on the command line echo "# test" >> README.md git init git add README.md git commit -m "first commit" git remote add origin g 阅读全文
摘要:
单变量线性回归(Linear Regression with One Variable) 什么是线性回归?线性回归是利用数理统计中回归分析,来确定两种或两种以上变量间相互依赖的定量关系的一种统计分析方法(取自 百度百科)。 例如:现在有一堆散乱的点,想找出一个一元一次方程来让这些点的分布误差最小(就 阅读全文