1 / 5

iPlots – interactive graphics “selection” feature

iPlots – interactive graphics “selection” feature. GLEON Fellowship Workshop January 14-18, 2013 Sunapee, NH Samantha Oliver. iPlots install.packages (“ iplots ”) Interactive graphing package that can be used to make histograms, scatterplots, boxplots, ets

merv
Download Presentation

iPlots – interactive graphics “selection” feature

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. iPlots – interactive graphics“selection” feature GLEON Fellowship Workshop January 14-18, 2013 Sunapee, NH Samantha Oliver

  2. iPlotsinstall.packages(“iplots”) • Interactive graphing package that can be used to make histograms, scatterplots, boxplots, ets • Similar language to R graphing, but has interactive features: • Arrow up/down for increase/decrease bin size, point size, etc. • Arrow left/right for increase/decrease transparency • Dropdown menus allow color selection of groups/points

  3. Skill relevance/usefulness Skill: finding packages that will suit your needs! (that is, iPlots is really easy to use once you figure it out) Usefulness: data exploration Maybe there’s a pattern overall…but… What about all of these lakes with high zooplankton diversity and low fish diversity? What do these lakes have in common? To answer this question, you can manually look at the data, write code to explore the data…but an easier way is to use iPlots!

  4. iplot(x, y) ihist(x, y) Drawing a box around specific data points creates a “selection” “selection” of data points on one graph selects same observations on all active graphs

  5. “Selection” features Selection can either be done manually by drawing a box on the graph, or through code:iset.select(table$fish>= 40) If selection is done manually, you can retrieve the indices that were selected through code iset.selected() Your selections can also be used to perform functions only on selected dataiabline(lm(table$fish ~ table$crust_zooplankton, subset=iset.select(table$fish <= 40)))

More Related