Xiao

Student in SUFE

Biography

Xiao Zhang is a Ph.D. candidate in the school of Statistics and Management of SUFE. He majors in Applied Statistics, and his research interests include high dimensional statistics.

Recent Posts

服务器安装R

2021-11-20 R

1. Install conda 1.1 查看最新版本的下载链接,使用wget获取 wget https://repo.anaconda.com/archive/Anaconda3-5.3.1-Linux-x86_64.sh 1.2 利用bash安装,按回车或yes知道安装完成 bsh ... Read More

VS code install and settings.

2021-11-12 VSCode

1. Extensions: LaTeX Workshop Markdown Preview Enhanced 2. setting.json { "workbench.colorTheme": "Monokai", ... Read More

Sublime text 3 install and settings on WIN10.

2021-11-12 Sublime

1. Install Softwares Sublime text 3 Texlive SumatraPDF Add paths to system environment variables, including E:\Sublime3\ E:\Sublime3\SumatraPDF\ ... Read More

Python | Using ctypes to access C code from Python.

2020-04-10 Pyhon C ctypes

This blog introduce how to use ctypes to access C code from Python. 1 C code Here, we use the same C code as my previous blog: #include <math.h> ... Read More

Python | Make a Python C Extension Module Using Python/C API.

2020-04-05 Pyhon C Python/C API Package

This blog introduce how to make a Python C extension module by using Python/C API. The demo package used here can be found on my Github repository. 1 ... Read More