Publications by Liam

tutorial of base python

17.09.2023

1 Base Types int float bool str bytes 2 variables assignment x = 1.23 + 2.34 a = b = c = 0 a,b,c = 1,2,3 a,b = b,a # 变量换值 x+ = 3 # 等价于x = x + 3 x-=1 # 等价于 x = x-1 del x # 表示删除x 3 Container Types ordered sequences list 列表 [1,5,9] ## [1, 5, 9] ["x",11,8.9] ## ['x', 11, 8.9] tuple 元组 (1,5,9) ## (1, 5, 9)...

1591 sym Python (4335 sym/103 pcs)

igrpah

14.09.2023

igraph 1 网络中的图 1.1 创建网络 library(igraph) ## ## Attaching package: 'igraph' ## The following objects are masked from 'package:stats': ## ## decompose, spectrum ## The following object is masked from 'package:base': ## ## union g1 <- graph( edges=c(1,2, 2,3, 3, 1), n=3, directed=F ) plot(g1) g2 <- graph( c("John", "Ji...

3631 sym R (34404 sym/187 pcs) 37 img

non-standard evaluation in rlang

06.09.2023

入口 假设我们有一个变量, 这个变量的值是字符串, 这个字符串是某一个数据集的变量名. library(rlang) VarName <- "Species" 然后,我们想要通过变量提取 iris 数据集中的Species列 iris$VarName ## NULL 可以看到,返回结果是NULL. 对于这个例子,实现的方式有两种: x <- parse(text = paste("ir...

2165 sym R (3724 sym/90 pcs)

R中美化表格

28.04.2023

Create Beautiful Tables in R 1. gt The parts of a table # install.packages("gt") library(gt) library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.0 ✔ purrr 0.3.5 ## ✔ tibble 3.2.1 ...

239 sym R (2314 sym/14 pcs) 1 img 3 tbl

rvetsTutorial

18.09.2022

R语言爬虫 rvest 米霖 2022-09-18 简介 随着互联网的出现,网络成为承载信息的一个巨大的载体。在这种情况下,数据的量级已经远远的超过了人脑能够承受的范围。如何有效的利用网络数据是一个巨大的挑战。从另外一个角度来讲,互联网的数据是一个巨大的包括�...

2548 sym R (2022 sym/5 pcs)

Deep Learning With R Part 1

27.10.2022

本课程主要介绍基于R的语言的深度学习,主要会介绍的是keras 这个包,或者说这个框架。同学学过之后能够理解深度学习整个框架并且能够熟练使用R和Keras构建深度学习模型。 资料: https://keras.io/examples/ -python https://keras.rstudio.com/ - R keras Tensorflow:https://tensorflow.r...

16091 sym R (49703 sym/230 pcs) 33 img

tidytext

03.11.2022

tidytext教程 MiLin 2022-11-03 tidytext使用整洁的数据原则使许多文本挖掘任务更容易、更有效,并且与已经广泛使用的工具包保持一致。 在这个包中,提供了函数和支持数据集,以允许文本与整洁格式之间的转换,以及在整洁工具和现有文本挖掘包之间无缝切换。 什�...

875 sym Python (4045 sym/21 pcs)

相似度量与聚类R

06.11.2022

1. 欧几里得距离 其意义就是两个元素在欧氏空间中的集合距离,因为其直观易懂且可解释性强,被广泛用于标识两个标量元素的相异度。 欧几里得距离通常需要特征都是数值的! library(dplyr) #> #> Attaching package: 'dplyr' #> The following objects are masked from 'package:stats': #> ...

2708 sym R (8770 sym/16 pcs) 7 img

Concept Drift In R

08.11.2022

drifter : Concept Drift In R MiLin 2022-11-09 简介 concept drift 是机器学习中会遇到的一个问题。指的是,模型在运行的过程中,数据分布或变量之间的关系随时间变化。从而倒是模型效果变差甚至失效。因此,非常重要的一点是及时的识别concpet drift 。 drifter 是R中用于进行con...

405 sym Python (19075 sym/7 pcs) 1 img

Interpretable machine learning

09.11.2022

DrWhy.AI是一套关于predictive Models的工具! 对应书籍: https://ema.drwhy.ai The DrWhy.AI family Model adapters : scikitlearn, h2o, mlr 等工具的通用接口! Model agnostic explainers :模型探索的特定方法。 Model specific explainers. 特定的模型探索方法。 Automated exploration:这些软件包结合了一...

7909 sym R (38229 sym/157 pcs) 28 img