Questions tagged [iplots]

Is a package for the R that offers a wide variety of plots, including histograms, barcharts, scatterplots, boxplots, fluctuation diagrams, parallel coordinates plots and spineplots. All plots support interactive features, such as querying, linked highlighting, color brushing, and interactive changing of parameters.

Is a package for R which provides high interaction statistical graphics, written in Java. It offers a wide variety of plots, including histograms, barcharts, scatterplots, boxplots, fluctuation diagrams, parallel coordinates plots and spineplots. All plots support interactive features, such as querying, linked highlighting, color brushing, and interactive changing of parameters.

Its home its here

Besides interactive plots, iPlots also provides an API for managing plots and adding user-defined objects, such as lines or polygons to a plot.

25 questions
0
votes
0 answers

How to plot a rootogram for a generalized poisson model with glmmmTMB package

I get errors whenever I try to run the line for the plot: library(glmmTMB) model.gp <- glmmTMB(Grav~Age+Site+Educ+Occupation+Maritalstat+HIVpos,family = "genpois",data=bo) library("countreg") countreg::rootogram(model.gp) Error in…
0
votes
0 answers

Why is iplot not displaying on my jupyter notebook

Tried using iplot to display an interactive line chart of a dataset It rather dislayed a blank space I tried df.iplot() but it displayed a blank space It was supposed to display a 3D line chart of the data set
0
votes
1 answer

Outliers not showing up in plotly

Hi I am using this code to generate a boxplot: However, it is not showing all the data points also not showing up the outliers on the top. I am using this code: import plotly.express as px fig = px.box(dataset, y=…
python_pi
  • 95
  • 1
  • 9
0
votes
0 answers

Plotly not showing graphs in pycharm

Iplot is not showing any output in pycharm and neither does it give any errorHere is the code I wrote
0
votes
1 answer

Subplots in Plotly - Cufflinks: How to put two subplots in the same plot

I have two different dataframes, with the same columns and I want to create an interactive plot and put both subplots in the same figure. avg1 = (flowData_AR.pivot_table(index=flowData_AR['TimeStamp'].dt.month.rename('month'), …
onr
  • 296
  • 4
  • 18
0
votes
1 answer

How to plot multiple horizontal bar charts in the same graph using cufflinks library

I want to plot a graph having two or more different horizontal bar charts in it using cufflinks library ( i.e. ipolt()). I have separately plotted both the bar charts using cufflinks library but now want to combine in one graph. This is my code…
Pinkita
  • 1
  • 2
0
votes
0 answers

How to plot three coordinates in function of a fourth (3 positional coordinates in function of time) in R?

I would like to plot a 4 dimensional graph in R. I have three coordinates of position and a fourth variable (time). In this plot I would like to show these 3 coordinates in function of time. I only have one observation for each coordinate in each…
0
votes
1 answer

How to plot multiple interactive plots in one window using R?

I use iplot (GCR more precisely) to draw multiple interactive bar charts and scatter diagrams for my analysis. However, for each execution, the windows must be arranged manually (may exist an automatic way too that I am not aware of). So, I am…
Espanta
  • 1,080
  • 1
  • 17
  • 27
0
votes
1 answer

Session aborting while loading library iplots

I tried to load the library Deducer, and while doing so the packages ggplot, JGR, rJava, and JavaGD were loading successfully, but my R-session is aborting when plotting.
Othin Ram
  • 13
  • 1
  • 3
-1
votes
1 answer

Reverse and move axes in Plotly - iplot

How does one reserve and move axes in plotly interactive iplots? I have tried the following to the code below but with no luck. fig['layout']['yaxis']['autorange'] = "reversed" import ipywidgets as widgets from ipywidgets import interact,…
Crimzo
  • 33
  • 4
1
2