• 综合主站
  • COS访谈第二十期:千秋邈矣独留我,百战归来再读书:谢益辉

请问在工作中没有使用到R,想自学, 该怎么学习?发现没有项目驱动的很难学下去, 想请给点建议
[未知用户] 上雪晴数据网 www.xueqing.tv 用任务和比赛来驱动学习
2 个月 后
22 天 后
Rmarkdown文件里面如何插入一段tex文件的圆满,并可以执行运行
\begin{tikzpicture}[
neuron/.style={circle,draw,inner sep=0pt,minimum size=10mm}
]
\node (perceptron) at (0, 0) [neuron] {};
\node (output) at (2.25, 0) {\ output};
\node (x1) at (-2.25, 1) {$x_1$};
\node (x2) at (-2.25, 0) {$x_2$};
\node (x3) at (-2.25, -1) {$x_3$};
\draw [->] (x1) to (perceptron);
\draw [->] (x2) to (perceptron);
\draw [->] (x3) to (perceptron);
\draw [->] (perceptron) to (output);
\end{tikzpicture}