Pin-then-unpin causes unintended changes to the plotting of a chart

I was trying to follow the recent blog post about Small Multiple to explore a bit the v2.2.

I came across the following difficulties:

(i) after zooming in, how do I zoom out / reset to the original plot?
(Must I click the Summary or Table tabs and then click back the Viz to refresh?)

(ii) Apparently, when I pin and unpin a chart, it is refreshed but does not return to the original plot (eg, the interval of the x-axis changes after each pin and unpin; there does not seem to be a systematic pattern in such unintended changes.) Similar unintended changes occur when clicking the Summary or Table tabs and then clicking back the Viz to refresh.

Any advice? (I run Exploratory on Win7 64-bit)

Hi tlyim,

  1. You can double click on any part of the chart to zoom back to the original. We’ll document this.
  2. Would you give me a sample data to reproduce this issue with the steps? You can share the chart by clicking on Share button in either Public or Private way.
1 Like

Thanks for your prompt reply. I did double-click but there was not response.

I have shared the chart and data at
https://exploratory.io/viz/tlyim/9204096037992021?cb=1476320800884

I also made a short video so that you can see the issue I experienced.

Not sure it’s reproducible on your machine. But I did try the v2.2 in a Dell desktop pc Win7 and also recorded the same issue in a Samsung notebook Win7.

Thanks.

Thanks tlyim for sharing the data and making the video!

  1. We’ll check if we can reproduce this on Windows. I’m on Mac and working fine for me, so it might be that it’s Windows specific issue.

  2. Thanks for the video on this. I think this is because we sample the data for Scatterplot when there are too many data points, which is causing the issue that the data keep getting changed when you pin/unpin. We’ll add ‘seed’ feature for this so that it will use a same sample data.

1 Like

Thanks for the reply. An off-track question: Is there or not any particular support for panel data by Exploratory at the moment? If so, please kindly point me to any documentation because I haven’t been able to find them.

For example, if I want to create a variable involving the simple moving average of two periods of another variable, should I simply do the following?

group by company
sort by datayear
mutate with lag(income)
mutate with (income + lag(income))/2

Thanks in advance.

Hi tlyim,

Yes, that should do it, if you’re interested in only the two period. But also, you can use ‘roll_xxx’ function to work on the moving/rolling calculations as well.

You can find the detail in this blog post, at the 5th section.

1 Like

Thanks for the information. Appreciated.

1 Like