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
25
votes
4 answers

How can I install rJava for use with 64bit R on a 64 bit Windows computer?

I installed iplots and rjava packages. When I do this library(iplots), I get the following error. I do have JDK installed on my pc. Loading required package: rJava Error : .onLoad failed in loadNamespace() for 'rJava', details: call: fun(libname,…
george willy
  • 1,693
  • 8
  • 22
  • 26
4
votes
1 answer

running the code with iplots library fails in RStudio

I am running the following code in R and it fails: load(url("http://pages.stat.wisc.edu/~karlrohe/netsci/data/madStuff.RData")) iplot(madStuff[,1],…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
4
votes
1 answer

Zoom in and zoom out for R graph

I know the question was already asked, but i couldn't solve my problem. I get a graph unreadale when i choose the text argument for my graph and when i choose the identify argument it's not better. This is what i get whith this script…
2
votes
1 answer

How to change the Y-Axis in Plotly to go from scientific to exponential or plain?

Ive seen many different answers, but need one specifically for the use of Plotly in Python....my code is below, but the Y axis doesn't come back in basic decimal points (I believe it come back in some micro format where instead of .000258 it will…
2
votes
1 answer

Not able to view US-states heatmap

I have written the following code to heat heatmap of US-States. But I am unable to get the output image in Google Colab. State codes are two alphabet codes for a particular state of the US. temp =…
Shaurya Sheth
  • 185
  • 2
  • 11
2
votes
2 answers

Creating a loop in r for multiple box plots

I have designed an experiment to see how serum markers change with time since eating a meal. I have a data frame consisting of 72 observations and 23o variables this is called BreakfastM. There are 229 variables which are serum markers and 1 which…
NLM09
  • 25
  • 1
  • 1
  • 4
1
vote
1 answer

iplots with time series data

I have a two columns. One date and the second data. I need to create a time series charts with iplots. Cannot find any docs with time series? Can anybody help with some starter pointers?
george willy
  • 1,693
  • 8
  • 22
  • 26
1
vote
0 answers

Change height of subplots in cufflinks QuantFig() candlestick chart when using iplot(asFigure=True)

my problem is that all sublots of my technical analysis study in cufflinks QuantFig() are the same height when using iplot(asFigure=True). I want to increase the height of the top candlestick chart and decrease the height of the underlying…
1
vote
2 answers

Plotly: iplot is not working with df.iplot(). How can i make it work?

enter code here import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from sklearn import decomposition from sklearn import datasets import seaborn as sns %matplotlib inline import plotly as py import…
Os Snehith Ab
  • 67
  • 1
  • 7
1
vote
0 answers

Saving a iplot and it shows blank image

The code plt.figure(figsize=(12,6)) df2 = pd.read_csv('C:\Users\madanraj.c\Downloads\qeport.csv',encoding = "ISO-8859-1") df2['Date'] = df2['Last Resolved Date'].apply(lambda t: pd.to_datetime(t).date()) df2['DateStr'] =…
Madan Raj
  • 279
  • 4
  • 15
1
vote
1 answer

How can i change the corresponding X-Axis Label for a given point in 'iplot' of python

This is the image which i have generated using iplot in python How can i show the corresponding data element name , when i am using iplot function . I have used the following commmand to create the plot data_f = pd.DataFrame({'Third':val ,…
1
vote
2 answers

How to add text to an interactive plot in R

I'm recently trying to make some nice interactive plots using iplots and qtlcharts, but didn't manage to find a feasible solution to add labels or legends on it. Anyone knows how to add text to an interactive plot in R? Below are some codes for…
Hao
  • 11
  • 2
1
vote
1 answer

How to show an iplot without opening an additional window into r shiny

I'm trying to build interactive graphs in my shiny app. The user should be able to click on bars and see where the cases are displayed in another graph for example like a scatterplot next to the barplot. There are different r packages, that are…
Jana
  • 21
  • 3
1
vote
0 answers

how to get xi in terms of n and sigma for a qqplot

I am stuck with when you set your cdf to equal (i−0.5)/n for when you are plotting QQ plots. I have: −exp−((x^2)/2σ^2))=(i−0.5)/n Then I got stuck because I need to take the natural log of both sides however the −i−0.5n will be negative so surely…
user212645
  • 31
  • 4
1
vote
0 answers

iplot.setExtendedQuery: How to display custom mouse over information?

Concerning the superb iplots package in R: By default, pressing CTRL and moving the mouse over a point in a scatter plot shows the x and y values of this point. How can I extend this to also show other attributes, which are not part of the plot, as…
lukeA
  • 53,097
  • 5
  • 97
  • 100
1
2