06 2020 档案
摘要:find . -type f -iname \*.jpg -delete -type 文件类型 -iname 区分大小写 -dele...
阅读全文
摘要:明明没有在跑大程序,苹果的风扇还是狂转不停。看来传感器不是特别灵敏。找到一个可以手动调节的软件,可以保持中等转速。 https://...
阅读全文
摘要:Tidyverse selections implement a dialect of R where operators make...
阅读全文
摘要:install.packages( lib = lib <- .libPaths()[1], pkgs = as.d...
阅读全文
摘要:namespace ‘glue’ is imported by ‘tidyselect’, ‘dplyr’ so cannot be...
阅读全文
摘要:最忠实Leo Breiman算法的版本是 randomForest,但是这个库不支持并行,性能也比较差。 有两个优化后的替代版本,都...
阅读全文
摘要:官方例子如下, rescale01 % mutate(across(where(is.numeric), rescale01))#>...
阅读全文
摘要:out-of-bag prediction Created: Jun 29, 2020 12:22 PM Updated: Jun ...
阅读全文
摘要:两个主要功能, 替换NA x <- c(2, 1, NA, 5, 3, NA) # Create example vec...
阅读全文
摘要:case_when 要点有两个 不匹配的时候会返回 NA,而不是保持不变根据顺序进行条件判断,顺序很重要 下面这段代码, x [...
阅读全文
摘要:Filtering joins filter rows from x based on the presence or abse...
阅读全文
摘要:nest_join() returns all rows and columns in x with a new nested-...
阅读全文
摘要:bind_rows & bind_cols 这两个命令是do.call(rbind, dfs)和do.call(cbind, dfs...
阅读全文
摘要:macOS 10.12 下使用pip install opencv-python安装OpenCV后会报错,主要是版本兼容问题。不想折...
阅读全文
摘要:summarise() regrouping output 警告 这里讨论的是return的属性,而不是group_by本身。以下面...
阅读全文