Posts

Showing posts from January 26, 2019

Run multi sql command in the same zeppelin paragraph

Image
0 Hello I have 3 tmpViews I want to show these views in the same zeppelin scatter dashboard I m using Spark interpreter I want to get each view with a color (i.e point of the same view have the same color) I tried %spark z.show(sql("select valrx, valry from MemArb ")) z.show(sql("select valx , valry from VoisArb ")) z.show(sql("select valrx , valry from VoisArb2 ")) but it gives me only the first view is there any solution? thanks in advance apache-zeppelin share | improve this question edited Nov 14 '18 at 0:42 Max Belousov