Graphing tools
When I first got into bioinformatics one of the things I needed to learn quickly was how to graph with very large tabels of data. Below are some of my favorite websites for learning how to graph big data.
Ìý
A great webstie with instructions on using R
Some great websties with instructions on using python for big data and graphing.
Use this to learn the python package pandas (like excel for big data).
Fancier plotting can be achieved with plotly or bokahÌý
Ìý
Specific to those in BioFrontiers on the compute cluster Fiji:
To use Rstudio on fiji, use a web browser to go toÌý fiji-viz.colorado.edu and click on Rstudio.Ìý
Ìý
Setting up a FANCY jupyter notebook on fiji.
Step 0:
Log into Fiji on the command line and do this:
Step1:
also run these line on the command lineÌý
pip3 install hide_code
pip3 install plotly
pip3 install ipywidgets
pip3 install jupyter_contrib_nbextensions
pip3 install jupyter_nbextensions_configurator
jupyter contrib nbextension install --user
jupyter nbextension install --user --py widgetsnbextension
jupyter nbextension enable --user --py widgetsnbextension
Then log off the fiji on the command line!
Step 2:
Start a new server on fiji-viz.colorado.edu
Step 3:
Start a new notebook
step 4: use the control panel button to log off the server
step 5: restart the server, on the home page you will have a new tab called Nbextentions, click that and turn on extensions you want
step 6: Start a new notebook with the "New" button. Name it by clicking on the name.Ìý
BTW, if you want to do the R lesson in the jupyter notebook instead the starting file is here.
#df=pandas.read_csv("https://raw.githubusercontent.com/kbroman/kbroman.github.io/master/datacarp/portal_data_joined.csv")
Ìý
Ìý