All public logs
Jump to navigation
Jump to search
Combined display of all available logs of 太極. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:17, 12 August 2023 Brb talk contribs uploaded File:Dend12.png ({{Pre}} set.seed(123) dat <- matrix(rnorm(20), ncol=2) # perform hierarchical clustering hc <- hclust(dist(dat)) # plot dendrogram plot(hc) # get ordering of leaves ord <- order.dendrogram(as.dendrogram(hc)) ord # [1] 8 3 6 5 10 1 9 7 2 4 # Same as seen on the dendrogram nodes # Rotate the branches (1,9) & (7,2,4) plot(rotate(hc, c("8", "3", "6", "5", "10", "7", "2", "4", "1", "9")), main="Rotated") </pre>)
- 16:17, 12 August 2023 Brb talk contribs created page File:Dend12.png ({{Pre}} set.seed(123) dat <- matrix(rnorm(20), ncol=2) # perform hierarchical clustering hc <- hclust(dist(dat)) # plot dendrogram plot(hc) # get ordering of leaves ord <- order.dendrogram(as.dendrogram(hc)) ord # [1] 8 3 6 5 10 1 9 7 2 4 # Same as seen on the dendrogram nodes # Rotate the branches (1,9) & (7,2,4) plot(rotate(hc, c("8", "3", "6", "5", "10", "7", "2", "4", "1", "9")), main="Rotated") </pre>)
- 16:39, 6 August 2023 Brb talk contribs uploaded File:Plotly3d.png
- 16:39, 6 August 2023 Brb talk contribs created page File:Plotly3d.png
- 19:06, 5 August 2023 Brb talk contribs created page Delta (Created page with "Delta method * https://en.wikipedia.org/wiki/Delta_method * R examples. ** Var(xbar/ybar) https://gist.github.com/arraytools/c39f52b9280f4f1858da83a6bc60f185.")
- 15:39, 31 July 2023 Brb talk contribs uploaded File:Filter single.png
- 15:39, 31 July 2023 Brb talk contribs created page File:Filter single.png
- 11:25, 1 July 2023 Brb talk contribs created page Smartctl (Created page with "= NVME = <pre> $ smartctl -v | head -1 smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.19.0-46-generic] (local build) </pre> <pre> $ sudo smartctl -a /dev/nvme0 smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.19.0-46-generic] (local build) Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org === START OF INFORMATION SECTION === Model Number: CT1000P3SSD8 Serial Number: 2314E6C4100F Firmware Version:...")
- 12:47, 27 May 2023 Brb talk contribs uploaded File:Vibrant ink rstheme.png (https://github.com/captaincaed/rstudio/blob/main/vibrant_ink_SB_2.rstheme)
- 12:47, 27 May 2023 Brb talk contribs created page File:Vibrant ink rstheme.png (https://github.com/captaincaed/rstudio/blob/main/vibrant_ink_SB_2.rstheme)
- 13:46, 21 May 2023 Brb talk contribs uploaded File:R2.png (<syntaxhighlight lang='rsplus'> x <- seq(0, 2.5, length=20) y <- sin(x) plot(x, y) abline(lsfit(x, y, intercept = F), col = 'red') summary(fit)$r.squared # [1] 0.8554949 </syntaxhighlight>)
- 13:46, 21 May 2023 Brb talk contribs created page File:R2.png (<syntaxhighlight lang='rsplus'> x <- seq(0, 2.5, length=20) y <- sin(x) plot(x, y) abline(lsfit(x, y, intercept = F), col = 'red') summary(fit)$r.squared # [1] 0.8554949 </syntaxhighlight>)
- 16:02, 11 May 2023 Brb talk contribs uploaded File:Paletteggplot2.png
- 16:02, 11 May 2023 Brb talk contribs created page File:Paletteggplot2.png
- 12:12, 10 May 2023 Brb talk contribs uploaded File:Paletteshowcol.png
- 12:12, 10 May 2023 Brb talk contribs created page File:Paletteshowcol.png
- 11:15, 10 May 2023 Brb talk contribs uploaded File:Palettebarplot.png (<syntaxhighlight lang='rsplus'> pal <- c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3", "#FF7F00") # pal <- sample(colors(), 10) # randomly pick 10 colors barplot(rep(1, length(pal)), col = pal, space = 0, axes = FALSE, border = NA) </syntaxhighlight>)
- 11:15, 10 May 2023 Brb talk contribs created page File:Palettebarplot.png (<syntaxhighlight lang='rsplus'> pal <- c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3", "#FF7F00") # pal <- sample(colors(), 10) # randomly pick 10 colors barplot(rep(1, length(pal)), col = pal, space = 0, axes = FALSE, border = NA) </syntaxhighlight>)
- 11:14, 10 May 2023 Brb talk contribs uploaded File:Paletteheatmap.png (<syntaxhighlight lang='rsplus'> pal <- c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3", "#FF7F00") pal <- matrix(pal, nr=2) # acknowledge a nice warning message pal_matrix <- matrix(seq_along(pal), nr=nrow(pal), nc=ncol(pal)) heatmap(pal_matrix, col = pal, Rowv = NA, Colv = NA, scale = "none", ylab = "", xlab = "", main = "", margins = c(5, 5)) # 2 rows, 3 columns with labeling on two axes </syntaxhighlight>)
- 11:14, 10 May 2023 Brb talk contribs created page File:Paletteheatmap.png (<syntaxhighlight lang='rsplus'> pal <- c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3", "#FF7F00") pal <- matrix(pal, nr=2) # acknowledge a nice warning message pal_matrix <- matrix(seq_along(pal), nr=nrow(pal), nc=ncol(pal)) heatmap(pal_matrix, col = pal, Rowv = NA, Colv = NA, scale = "none", ylab = "", xlab = "", main = "", margins = c(5, 5)) # 2 rows, 3 columns with labeling on two axes </syntaxhighlight>)
- 11:08, 10 May 2023 Brb talk contribs uploaded File:Rpalette.png (<syntaxhighlight lang='rsplus'> pal <- palette() # [1] "black" "#DF536B" "#61D04F" "#2297E6" "#28E2E5" "#CD0BBC" "#F5C710" # [8] "gray62" pal_matrix <- matrix(seq_along(pal), nr=1) image(pal_matrix, col = pal, axes = FALSE) # 8 rows, 1 column, but no labeling # Starting from bottom, left. par()$usr # change with the data dim text(0, (par()$usr[4]-par()$usr[3])/8*c(0:7), labels = pal) </syntaxhighlight>)
- 11:08, 10 May 2023 Brb talk contribs created page File:Rpalette.png (<syntaxhighlight lang='rsplus'> pal <- palette() # [1] "black" "#DF536B" "#61D04F" "#2297E6" "#28E2E5" "#CD0BBC" "#F5C710" # [8] "gray62" pal_matrix <- matrix(seq_along(pal), nr=1) image(pal_matrix, col = pal, axes = FALSE) # 8 rows, 1 column, but no labeling # Starting from bottom, left. par()$usr # change with the data dim text(0, (par()$usr[4]-par()$usr[3])/8*c(0:7), labels = pal) </syntaxhighlight>)
- 13:52, 9 May 2023 Brb talk contribs uploaded File:Ggplotbarplot.png
- 13:52, 9 May 2023 Brb talk contribs created page File:Ggplotbarplot.png
- 11:40, 9 May 2023 Brb talk contribs uploaded File:Cbioportal cptac.png
- 11:40, 9 May 2023 Brb talk contribs created page File:Cbioportal cptac.png
- 21:07, 25 April 2023 Brb talk contribs uploaded File:Losslesscut.png
- 21:07, 25 April 2023 Brb talk contribs created page File:Losslesscut.png
- 17:47, 23 April 2023 Brb talk contribs uploaded File:Sleepstudy.png (<syntaxhighlight lang='rsplus'> sleepstudy %>% ggplot(aes(x=Days, y = Reaction)) + geom_point() + geom_smooth(method = "lm", se = FALSE) + facet_wrap(~Subject) </syntaxhighlight>)
- 17:47, 23 April 2023 Brb talk contribs created page File:Sleepstudy.png (<syntaxhighlight lang='rsplus'> sleepstudy %>% ggplot(aes(x=Days, y = Reaction)) + geom_point() + geom_smooth(method = "lm", se = FALSE) + facet_wrap(~Subject) </syntaxhighlight>)
- 14:13, 11 April 2023 Brb talk contribs created page Tcga (Created page with "= Resources = * [https://www.cancer.gov/about-nci/organization/ccg/blog/2017/tcga-pancan-atlas TCGA to Complete its Final Analysis: the PanCanAtlas], [https://gdc.cancer.gov/a...")
- 16:58, 17 March 2023 Brb talk contribs uploaded File:Svg4.svg (<pre> svg("svg4.svg", width=4, height=4) plot(1:10, main="width=4, height=4") dev.off() </pre>)
- 16:58, 17 March 2023 Brb talk contribs created page File:Svg4.svg (<pre> svg("svg4.svg", width=4, height=4) plot(1:10, main="width=4, height=4") dev.off() </pre>)
- 10:44, 11 March 2023 Brb talk contribs uploaded File:RStudioVisualMode.png
- 10:44, 11 March 2023 Brb talk contribs created page File:RStudioVisualMode.png
- 16:01, 8 March 2023 Brb talk contribs uploaded File:Pca directly2.png
- 16:01, 8 March 2023 Brb talk contribs created page File:Pca directly2.png
- 11:11, 11 February 2023 Brb talk contribs uploaded File:MultipleProbes.PNG
- 11:11, 11 February 2023 Brb talk contribs created page File:MultipleProbes.PNG
- 11:10, 11 February 2023 Brb talk contribs uploaded File:ClassPredictionOptions.PNG
- 11:10, 11 February 2023 Brb talk contribs created page File:ClassPredictionOptions.PNG
- 11:08, 11 February 2023 Brb talk contribs uploaded File:ClassPrediction.PNG
- 11:08, 11 February 2023 Brb talk contribs created page File:ClassPrediction.PNG
- 21:01, 28 January 2023 Brb talk contribs uploaded File:Pca factoextra.png
- 21:01, 28 January 2023 Brb talk contribs created page File:Pca factoextra.png
- 20:34, 28 January 2023 Brb talk contribs uploaded File:Pca autoplot.png
- 20:34, 28 January 2023 Brb talk contribs created page File:Pca autoplot.png
- 20:34, 28 January 2023 Brb talk contribs uploaded File:Pca directly.png
- 20:34, 28 January 2023 Brb talk contribs created page File:Pca directly.png
- 10:21, 25 January 2023 Brb talk contribs uploaded File:VscodeEnergy.png