Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pipaber committed Mar 6, 2024
1 parent 02b38d4 commit a8be4b2
Show file tree
Hide file tree
Showing 15 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions _freeze/index/execute-results/html.json

Large diffs are not rendered by default.

Binary file modified _freeze/index/figure-html/unnamed-chunk-13-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-17-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-21-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-21-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-22-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-24-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-28-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-28-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-28-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-34-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-34-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/index/figure-html/unnamed-chunk-34-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/la-palma-map.png
Binary file not shown.
13 changes: 9 additions & 4 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,9 @@ p
```{r}
#| echo: true
ggs <- ggs_graph(gtl = gtl_res_GOclu_BP, n_gs = 100)
# number_gs <- gtl_res_GOclu_BP$res_enrich$gs_id |> unique() |> length()
ggs <- ggs_graph(gtl = gtl_res_GOclu_BP, n_gs = 500)
ggs2 <- ggs_graph(gtl = gtl_res_GOclu_BP, n_gs = 20)
data <- toVisNetworkData(ggs)
Expand Down Expand Up @@ -423,7 +425,7 @@ plt.show()
```

In this plot, we can see that there are two sub graphs with more than 100 connected components. We are gonna work with these.
In this plot, we can see that there are two sub graphs with more than 300 connected components. We are gonna work with these.

#### Computing HITS (Hubs and Authorities) Scores.

Expand All @@ -447,10 +449,13 @@ df_authorities = pd.DataFrame.from_dict(a, orient="index").sort_values(by=[0], a
#| echo: true
df_a <- py$df_hubs |>
rename("Hubs Centrality"="0")
rename("Hubs Centrality"="0") |>
slice_head(n = 50)
df_b <- py$df_authorities |>
rename("Authorities Centrality" = "0")
rename("Authorities Centrality" = "0") |>
slice_head(n = 50)
htmltools::tagList(list(DT::datatable(df_a,extensions = 'Buttons', options = list(
dom = 'Bfrtip',
Expand Down

0 comments on commit a8be4b2

Please sign in to comment.