Package RIGHT. March 30, 2015



Similar documents
Bernd Klaus, some input from Wolfgang Huber, EMBL

Package uptimerobot. October 22, 2015

Package hoarder. June 30, 2015

Getting started with qplot

Package plan. R topics documented: February 20, 2015

Package TSfame. February 15, 2013

Package bigdata. R topics documented: February 19, 2015

Introduction Course in SPSS - Evening 1

Package erp.easy. September 26, 2015

Package OECD. R topics documented: January 17, Type Package Title Search and Extract Data from the OECD Version 0.2.

Package optirum. December 31, 2015

Statistics Revision Sheet Question 6 of Paper 2

Package SHELF. February 5, 2016

Package polynom. R topics documented: June 24, Version 1.3-8

Package packrat. R topics documented: March 28, Type Package

Sisense. Product Highlights.

Using Excel for descriptive statistics

Analytics Data Groups

Package cgdsr. August 27, 2015

Portal Connector Fields and Widgets Technical Documentation

Data Visualization in R

MicroStrategy Analytics Express User Guide

Package retrosheet. April 13, 2015

Package sendmailr. February 20, 2015

Package gazepath. April 1, 2015

5 Correlation and Data Exploration

Graphing Information

Package tagcloud. R topics documented: July 3, 2015

Visualizing Data. Contents. 1 Visualizing Data. Anthony Tanbakuchi Department of Mathematics Pima Community College. Introductory Statistics Lectures

Package searchconsoler

What s new in SAP Dashboards 4.0 and 4.1. Sandy Brotje Harris Corporation, Healthcare Solutions SESSION CODE: 0709

2/24/2010 ClassApps.com

Enterprise Web Developer : Using the Emprise Javascript Charting Widgets.

Diagrams and Graphs of Statistical Data

Scientific Graphing in Excel 2010

STC: Descriptive Statistics in Excel Running Descriptive and Correlational Analysis in Excel 2013

Using SPSS, Chapter 2: Descriptive Statistics

Appendix 2.1 Tabular and Graphical Methods Using Excel

LICENSE4J FLOATING LICENSE SERVER USER GUIDE

Client Overview. Engagement Situation. Key Requirements

Data Visualization with R Language

Package hive. January 10, 2011

Data Visualization. BUS 230: Business and Economic Research and Communication

Package whoapi. R topics documented: June 26, Type Package Title A 'Whoapi' API Client Version Date Author Oliver Keyes

SAS BI Dashboard 4.4. User's Guide Second Edition. SAS Documentation

TDAQ Analytics Dashboard

Data Visualization. Scientific Principles, Design Choices and Implementation in LabKey. Cory Nathe Software Engineer, LabKey

Assignment 5: Visualization

Package MBA. February 19, Index 7. Canopy LIDAR data

Package EasyHTMLReport

R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.

Formulas, Functions and Charts

Adding 3rd-Party Visualizations to OBIEE Kevin McGinley

WHO STEPS Surveillance Support Materials. STEPS Epi Info Training Guide

Package fimport. February 19, 2015

Virto Pivot View for Microsoft SharePoint Release User and Installation Guide

Advanced Spreadsheet Curriculum Content Frameworks

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

Scientific data visualization

Package benford.analysis

Regional Drought Decision Support System (RDDSS) Charting Tools Help Documentation

Summarizing and Displaying Categorical Data

Package hive. July 3, 2015

Package syuzhet. February 22, 2015

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller

Package SurvCorr. February 26, 2015

Package LexisPlotR. R topics documented: April 4, Type Package

MARS STUDENT IMAGING PROJECT

Excel What you will do:

Visualization Quick Guide

Create interactive web graphics out of your SAS or R datasets

Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys

ACEYUS REPORTING. Aceyus Intelligence Executive Summary

Using and creating Crosstabs in Crystal Reports Juri Urbainczyk

Enterprise Data Visualization and BI Dashboard

Online Data Monitoring Framework Based on Histogram Packaging in Network Distributed Data Acquisition Systems

The Center for Teaching, Learning, & Technology

Package translater. R topics documented: February 20, Type Package

Microsoft Excel. Qi Wei

Jan 28 th, 2015 FREE Webinar by

Load testing with. WAPT Cloud. Quick Start Guide

Package R4CDISC. September 5, 2015

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

If there is not a Data Analysis option under the DATA menu, you will need to install the Data Analysis ToolPak as an add-in for Microsoft Excel.

Intro to Excel spreadsheets

TECHNIQUES FOR BUILDING A SUCCESSFUL WEB ENABLED APPLICATION USING SAS/INTRNET SOFTWARE

Package StockChina. January 30, 2016

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Getting Started with R and RStudio 1

Curve Fitting in Microsoft Excel By William Lee

Scatter Chart. Segmented Bar Chart. Overlay Chart

How To Create A Report In Excel

Data representation and analysis in Excel

Package empiricalfdr.deseq2

Intermediate PowerPoint

Package neuralnet. February 20, 2015

Raising the Bar (Chart)

Information Literacy Program

Transcription:

Type Package Title R Interactive Graphics via HTML Version 0.2.0 Date 2015-03-30 Package RIGHT March 30, 2015 Author ChungHa Sung, TaeJoon Song, JongHyun Bae, SangGi Hong, Jae W. Lee, and Junghoon Lee Maintainer Jonghyun Bae <bnbbkr@gmail.com> Interactive visualization supporting linked graphs can help users easily explore and gain valuable insights and enables such visualization and interactive re-analysis using HTML5 canvas and JavaScript. Its R API is designed to create a seamless analysis, visualization, and re-analysis workflow for interactive visualization and analysis. Since HTML5 canvas and JavaScript is supported in virtually all modern web browsers, the visualizations can be delivered to almost any device/platform for presentation purposes. License GPL-3 Depends ggplot2 Imports plyr, rjson, shiny Suggests testthat URL https://righthelp.github.io/tutorial/overview BugReports https://groups.google.com/forum/?hl=en#!forum/right-user NeedsCompilation no Repository CRAN Date/Publication 2015-03-30 07:36:23 R topics documented: boxplot_right....................................... 2 clean............................................. 3 createggplot......................................... 3 createqplot......................................... 4 hist_right......................................... 4 1

2 boxplot_right lines_right........................................ 5 pie_right......................................... 6 plot_right......................................... 6 points_right....................................... 7 print.right......................................... 8 RIGHT........................................... 8 runserver.......................................... 9 search_right....................................... 10 summary.right...................................... 10 table_right........................................ 11 Index 12 boxplot_right Box-whisker Draw a box-whisker of the given values. boxplot_right(form,, col = NULL, isstring = FALSE) form a formula describing the x and y variables as y ~ x. a.frame object. col color of the boxes. isstring a character is expected for x and if TRUE. It is useful for programming. boxplot RIGHT(boxplot(conc ~ Subject, Theoph))

clean 3 clean Cleanup RIGHT Object Cleanup RIGHT Object clean(obj) obj RIGHT object. obj <- RIGHT(plot(conc ~ Time, Theoph), Theoph) clean(obj) createggplot Extract object s name Function to create object name in ggplot function. createggplot(,...) a.frame object.... other options to draw graph(colour, fill) ggplot2 RIGHT(print(ggplot(Theoph, aes(time, conc, colour=subject)) + geom_point()))

4 hist_right createqplot Extract object s name Function to create object name in qplot function. createqplot(x, y = NULL,...,, geom = "point") x xaxis to draw graph. y yaxis to draw graph. Default is NULL... other options to draw graph(colour, fill) a.frame object. geom graph type to draw(point, line, bar, boxplot). Default is "point" qplot RIGHT({qplot(x=Time, y=conc, =Theoph, geom="point", colour=subject) qplot(x=time, fill=subject, =Theoph, geom="bar")}) hist_right Histograms Draw a histogram of the given values. hist_right(x,, color = NULL, isstring = FALSE)

lines_right 5 x color isstring variable name for which the histogram is desired. a.frame object. column used to define the colors used to fill the bars. Default is NULL. a character is expected for x, and color if TRUE. It is useful for programming. hist RIGHT(hist(Time, Theoph, color = Subject)) lines_right Add Lines to a Plot lines_right draws a sequence of points in the current axis. lines_right(form,, by = NULL, isstring = FALSE) form a formula describing the x and y variables as y ~ x. a.frame object. by column used to group lines. Default is NULL. isstring a character is expected for if TRUE. It is useful for programming. lines RIGHT({plot(conc ~ Time, Theoph, type = "n") lines(conc ~ Time, Theoph)})

6 plot_right pie_right Pie Charts Draw a pie chart. pie_right(x,, isstring = FALSE) x isstring variable name for which the histogram is desired. a.frame object. a character is expected for x and if TRUE. It is useful for programming. pie RIGHT(pie(Subject, Theoph)) plot_right X-Y Plotting Function to create x-y scatter and line plots, including the axis. plot_right(form,, type = "b", by = color, color = NULL, isstring = FALSE)

points_right 7 form a formula describing the x and y variables as y ~ x. a.frame object. type the type of plot. Currently, only "n", "b", "p", "l" are supported. See plot for more details. by column used to group lines. Default is the same as color. color column used to define line or point color. Default is NULL. isstring a character is expected for and color if TRUE. It is useful for programming. plot RIGHT(plot(conc ~ Time, Theoph, type = "b", color = Subject)) points_right Add Points to a Plot points_right draws a sequence of points in the current axis. points_right(form,, isstring = FALSE) form a formula describing the x and y variables as y ~ x. a.frame object. isstring a character is expected for if TRUE. It is useful for programming. points RIGHT({plot(conc ~ Time, Theoph, type = "n") points(conc ~ Time, Theoph)})

8 RIGHT print.right Print RIGHT Object Print RIGHT Object ## S3 method for class RIGHT print(x,...) x RIGHT object.... additional arguments affecting the summary produced. obj <- RIGHT(plot(conc ~ Time, Theoph), Theoph) print(obj) RIGHT Entry Function for RIGHT Entry Function for RIGHT RIGHT(expr = { },..., title = "RIGHT: R Interactive Graphics via HTml", ncol = NULL, dir = tempfile(), overwrite = FALSE, browser = getoption("browser"), supportright = getoption("supportright")) expr plotting expression to evaluate....frame objects used in expr. If they are used in one of the plotting functions, it is not necessary to list them. title title of the visualization. The default value is "RIGHT: R Interactive Graphics via HTml."

runserver 9 ncol dir overwrite browser supportright support improved layout to group related plots together directory name to store files used for the visualization. Temporary directory is created under the current working directory by default. rewrite exiting files if the directory name matches. FALSE by default. a character string giving the name of the browser. It should be in the PATH, or a full path specified. getoption("browser") by default. allow inserting Google AdSense to support further development of RIGHT. Use options and getoption to set and retrieve global option supportright. { } RIGHT({plot(conc ~ Time, Theoph, type = "p", color = "Subject") lines(conc ~ Time, Theoph, by="subject") hist(wt, Theoph) boxplot(conc ~ Time, Theoph) pie(subject, Theoph) search(theoph) table(theoph)}) runserver shiny server-offloading Function to create server-offloading graph. runserver(expr = { }) expr a formula to draw server-offloading graph and return result of formula. shiny obj <- RIGHT({plot(conc ~ Time, Theoph, type="p", color = Subject) loessarray <- runserver({obj <- loess(conc ~ Time, = Theoph) xrange <- range(theoph$time) simarray <-.frame(time = seq(xrange[1], xrange[2], length.out = 132)) simarray$conc <- predict(obj, new = simarray)

10 summary.right print(obj) return(simarray)}) lines(conc ~ Time, loessarray)}) search_right Add a Search Box search_right adds a search box for a.frame object. search_right(, isstring = FALSE) isstring a.frame object. a character is expected for if TRUE. It is useful for programming. RIGHT({plot(conc ~ Time, Theoph, type = "p", color = Subject) search(theoph)}) summary.right Summarize RIGHT Object Summarize RIGHT Object ## S3 method for class RIGHT summary(object,...) object RIGHT object.... additional arguments affecting the summary produced.

table_right 11 obj <- RIGHT(plot(conc ~ Time, Theoph), Theoph) summary(obj) table_right Add an Interactive Table table_right adds an interactive table for a.frame object. table_right(, height = 200L, isstring = FALSE) a.frame object. height height of the table. The default is 200. isstring a character is expected for if TRUE. It is useful for programming. RIGHT({plot(conc ~ Time, Theoph, type = "p", color = Subject) table(theoph)})

Index boxplot, 2 boxplot_right, 2 clean, 3 createggplot, 3 createqplot, 4 getoption, 9 ggplot2, 3 hist, 5 hist_right, 4 lines, 5 lines_right, 5 options, 9 pie, 6 pie_right, 6 plot, 7 plot_right, 6 points, 7 points_right, 7 print.right, 8 qplot, 4 RIGHT, 8 runserver, 9 search_right, 10 shiny, 9 summary.right, 10 table_right, 11 12