Sitemap

A list of all the posts and pages found on the site. For you robots out there is an XML version available for digesting as well.

Pages

About me

Posts

Future Blog Post

less than 1 minute read

Published:

This post will show up by default. To disable scheduling of future posts, edit config.yml and set future: false.

Post 3

less than 1 minute read

Published:

Python文件路径读取书写问题,直接复制绝对路径会出现 SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes 问题。错误出现的根本原因是转义问题。例如:简单书写 dataset=pd.read_csv(‘C:\Users\mastaffs\Desktop\JupyterTest\datasets\studentscores.csv’) 就会报错。原因是在python 字符串中\有转义的含义,我们需要采取一些方式使得\不被解读为转义字符。有三种方法可以解决:

  • (1). 在路径前面加r,即保持字符原始值的意思
    dataset=pd.read_csv(r’C:\Users\mastaffs\Desktop\JupyterTest\datasets\studentscores.csv’)
  • (2). 替换为双反斜杠
    dataset=pd.read_csv(‘C:\\Users\\mastaffs\\Desktop\\JupyterTest\\datasets\\studentscores.csv’)
  • (3). 替换为正斜杠
    dataset=pd.read_csv(‘C:/Users/mastaffs/Desktop/JupyterTest/datasets/studentscores.csv’)

Post 2

less than 1 minute read

Published:

向不同期刊/出版社投稿时,会有不同的manuscript格式要求:

  • 下载相应package, 并放在C\CTex\MikTex\tex\latex 路径下
  • 更新MikTex FNDB. main menu上的tex-> MikTex-> MikTex Options-> Refresh FNDB.

Post 1

less than 1 minute read

Published:

WinEdt 10.3 注册码破解激活码(防止网页失效,特此搬运) Help -> Register

  • WinEdt Name: Cracker TeCHiScy
  • Code: 1130140925535334280

过段时间可能失效,失效后再次输入这个注册码可继续正常使用。

publications

Paper Title Number 1

Published in , 2009


title: “Stability analysis and optimal control of production-limiting disease in farm with two vaccines,” collection: publications permalink: /publication/2009-10-01-paper-title-number-1 #excerpt: ‘This paper is about the number 1. The number 2 is left for future work.’ date: 2022-02 venue: ‘Discrete and Continuous Dynamical Systems - Series B’ paperurl: ‘https://doi.org/10.3934/dcdsb.2021058’ citation: ‘Your Name, You. (2009). "Paper Title Number 1." Journal 1. 1(1).’

talks

teaching