# jupyter_basic **Repository Path**: Memory_Factory/jupyter_basic ## Basic Information - **Project Name**: jupyter_basic - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-26 - **Last Updated**: 2025-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Jupyter_basic Some exercises under jupyter enviroment ## 学习例子练习 #### 《人工智能基础教程:Python篇(青少版)》 > - python_basic_exercises.ipynb > > - turtle_exercises/ #### 《大数据数学基础(Python语言描述)》 > - python_math_fundamental.ipynb #### 《趣学贝叶斯统计:橡皮鸭、乐高和星球大战中的统计学》 *"BAYESIAN STATISTICS THE FUN WAY"* > - R_exercises.ipynb #### 《GPT图解 大模型是怎样构成的》 > - GPT_illustrated.ipynb #### 《零基础学机器学习》 > - zero_ml.ipynb --- ## 在jupyter notebook中使用R语言 ```terminal install.packages('IRkernel') IRkernal::installspec() ``` --- ## py Files Remark #### latex_print.py | Function | Comment | | -------- | ------- | | `get_raw_repr(s)` | to remove qoute when using `repr()` | | `lprint(math)` | to display a string as a math formula under latex formation | | `tl(ex)` | to print a title for separating every exercise | #### bayesian.py | Function | Comment | | -------- | ------- | | `choose(n,k)` | | | `binomial(k,n,p)` | | | `pbinom(k,n,p,lower_tail=True)` | | | `beta(p,alpha,beta)` | |