Skip to content

Commit

Permalink
Small bug fixed on Pathways Vis notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
Ales-ibt committed Feb 6, 2024
1 parent 93e738c commit 8637263
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/notebooks/R Examples/Pathways Visualisation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -703,9 +703,9 @@
"outputs": [],
"source": [
"# Integrating all dataframes into a single dataframe\n",
"integrated_df = data.frame()\n",
"for (df in list_of_dfs){\n",
" integrated_df = merge(integrated_df,df, all = T)\n",
"integrated_df = list_of_dfs[[1]]\n",
"for (i in 2:length(list_of_dfs)){\n",
" integrated_df = merge(integrated_df,list_of_dfs[[i]], all = T)\n",
"}\n",
"\n",
"## Cleaning the integrated table\n",
Expand Down

0 comments on commit 8637263

Please sign in to comment.