Skip to content

Commit 16997aa

Browse files
committed
Deploying to gh-pages from @ 97827bc 🚀
1 parent a55ca25 commit 16997aa

34 files changed

Lines changed: 306 additions & 35 deletions
-38 Bytes
Loading
43 Bytes
Loading
-485 Bytes
Loading
22 Bytes
Loading
350 Bytes
Loading
-264 Bytes
Loading
1.64 KB
Loading
592 Bytes
Loading

articles/visualization.html

Lines changed: 45 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/visualization.md

Lines changed: 34 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,29 @@ visualize.rank(dataImput, listName = "POLK_HUMAN",
218218

219219
![](visualization_files/figure-html/unnamed-chunk-11-1.png)
220220

221+
## Target protein abundance plot
222+
223+
The
224+
[`visualize.target()`](https://uconn-scs.github.io/msDiaLogue/reference/visualize.target.md)
225+
function provides a convenient way to explore the abundance of specific
226+
proteins across experimental conditions. It is particularly useful for
227+
quickly examining target protein behavior, complementing global
228+
visualizations like rank abundance plots.
229+
230+
``` r
231+
visualize.target(dataImput, type = "violin", facet = TRUE,
232+
listName = "POLK_HUMAN", regexName = c("ZN840"))
233+
```
234+
235+
![](visualization_files/figure-html/unnamed-chunk-12-1.png)
236+
237+
``` r
238+
visualize.target(dataImput, type = "bar", facet = FALSE,
239+
listName = "POLK_HUMAN")
240+
```
241+
242+
![](visualization_files/figure-html/unnamed-chunk-12-2.png)
243+
221244
## Histogram of fold changes and p-values for test
222245

223246
### Examples
@@ -226,7 +249,7 @@ visualize.rank(dataImput, listName = "POLK_HUMAN",
226249
visualize.test(anlys_modt$`100pmol-50pmol`)
227250
```
228251

229-
![](visualization_files/figure-html/unnamed-chunk-12-1.png)
252+
![](visualization_files/figure-html/unnamed-chunk-13-1.png)
230253

231254
If the input `dataSet` is the whole list `anlys_modt`, msDiaLogue will
232255
produce individual subplots corresponding to each comparison.
@@ -235,7 +258,7 @@ produce individual subplots corresponding to each comparison.
235258
visualize.test(anlys_modt)
236259
```
237260

238-
![](visualization_files/figure-html/unnamed-chunk-13-1.png)
261+
![](visualization_files/figure-html/unnamed-chunk-14-1.png)
239262

240263
### Details
241264

@@ -259,7 +282,7 @@ combinations of sets.
259282
visualize.upset(dataSet)
260283
```
261284

262-
![](visualization_files/figure-html/unnamed-chunk-14-1.png)
285+
![](visualization_files/figure-html/unnamed-chunk-15-1.png)
263286

264287
This plot reveals that 42 proteins are shared by 50pmol, 100pmol, and
265288
200pmol, while only 3 proteins are shared by 100 pmol and 200pmol, but
@@ -277,7 +300,7 @@ visualize.venn(dataSet, show_percentage = TRUE,
277300
saveRes = TRUE)
278301
```
279302

280-
![](visualization_files/figure-html/unnamed-chunk-15-1.png)
303+
![](visualization_files/figure-html/unnamed-chunk-16-1.png)
281304

282305
where `saveRes = TRUE` refers to the data containing logical columns
283306
representing sets in Venn plot information will be saved as a `.csv`
@@ -297,7 +320,7 @@ visualize.volcano(anlys_modt$`100pmol-50pmol`, P.thres = 0.05, F.thres = 1)
297320
#> (`geom_text_repel()`).
298321
```
299322

300-
![](visualization_files/figure-html/unnamed-chunk-16-1.png)
323+
![](visualization_files/figure-html/unnamed-chunk-17-1.png)
301324

302325
If the input `dataSet` is the whole list `anlys_modt`, msDiaLogue will
303326
produce individual subplots corresponding to each comparison.
@@ -308,7 +331,7 @@ visualize.volcano(anlys_modt, P.thres = 0.05, F.thres = 1)
308331
#> (`geom_text_repel()`).
309332
```
310333

311-
![](visualization_files/figure-html/unnamed-chunk-17-1.png)
334+
![](visualization_files/figure-html/unnamed-chunk-18-1.png)
312335

313336
### Details
314337

@@ -335,7 +358,7 @@ visualize.scree(anlys_pca, type = c("bar", "line"),
335358
label = TRUE, ncp = 10)
336359
```
337360

338-
![](visualization_files/figure-html/unnamed-chunk-18-1.png)
361+
![](visualization_files/figure-html/unnamed-chunk-19-1.png)
339362

340363
where `label = TRUE` adds information labels at the top of bars/points,
341364
and `ncp = 10` sets the number of dimension to be displayed.
@@ -348,7 +371,7 @@ and `ncp = 10` sets the number of dimension to be displayed.
348371
visualize.score(anlys_pca, ellipse = TRUE, ellipse.level = 0.95, label = TRUE)
349372
```
350373

351-
![](visualization_files/figure-html/unnamed-chunk-19-1.png)
374+
![](visualization_files/figure-html/unnamed-chunk-20-1.png)
352375

353376
### Details
354377

@@ -371,7 +394,7 @@ provided), for each groups (condition) provided.
371394
visualize.loading(anlys_pca, label = TRUE)
372395
```
373396

374-
![](visualization_files/figure-html/unnamed-chunk-20-1.png)
397+
![](visualization_files/figure-html/unnamed-chunk-21-1.png)
375398

376399
### Details
377400

@@ -394,7 +417,7 @@ number of proteins, this plot can be unwieldy.
394417
visualize.biplot(anlys_pca, ellipse = TRUE, ellipse.level = 0.95, label = "all")
395418
```
396419

397-
![](visualization_files/figure-html/unnamed-chunk-21-1.png)
420+
![](visualization_files/figure-html/unnamed-chunk-22-1.png)
398421

399422
## VIP score plot
400423

@@ -410,7 +433,7 @@ each condition.
410433
visualize.vip(anlys_plsda, comp = 1, num = 10, thres = 1)
411434
```
412435

413-
![](visualization_files/figure-html/unnamed-chunk-22-1.png)
436+
![](visualization_files/figure-html/unnamed-chunk-23-1.png)
414437

415438
[
416439
Previous](https://uconn-scs.github.io/msDiaLogue/articles/analysis.md)

0 commit comments

Comments
 (0)