Questions tagged [python-visual]

11 questions
2
votes
1 answer

Throwing Type error while importing PyARMViz package. How to solve it?

from PyARMViz import PyARMViz Traceback (most recent call last): File "", line 1, in from PyARMViz import PyARMViz File "C:\Users\naveen-raj-b\Anaconda3\lib\site-packages\PyARMViz_init_.py", line 14, in from PyARMViz.PyARMViz import…
2
votes
1 answer

MovieWriter imagemagick unavailable

I am trying to animate the graph, but jupyter is giving error: MovieWriter imagemagick unavailable. And just animating the 1st image(which is obvious as MovieWriter is not working). How to fix it? Python version: 3 Here is the code import numpy as…
0
votes
1 answer

Value Error visualizing Network using networkx

I was told that using the NetworkX package was helpful in creating complex graphs, so I decided to go ahead and use NetworkX to visualize the logic behind forward propagation where each layer of the neural network is represented as a subset of…
0
votes
0 answers

Python visual in Power BI - plot is too small

I have several Python visuals in Power BI. The plots are always too small: the space is not utilized and therefore the plot is too small. Tried to adjust the figure size, no effects plt.figure(figsize=(18, 15)) Tried to reduce the padding, no…
Gamer 007
  • 11
  • 3
0
votes
1 answer

Python plot multiple z-test result with confidence interval (visualize A/B test results)

what I want to plot Hi, I want to visualize results for one A/B test. The experiment tracks 4 metrics, and I want to show them in one plot altogether. The schema of my dataframe is: test_control | metric1 | metric2 | metric3 | metric4 Does anyone…
0
votes
0 answers

Python `vis` module err . Python Solar System

Hi I am trying to get the following github repo : https://github.com/lukekulik/solar-system to work on my laptop and have installed all the modules required but for some reason when i try and run i get error cannot import module vis in from vis…
0
votes
0 answers

Easy 3D animation inside wxpython widget

I need to display simple 3D objects (box, cylinder, arrows, etc.) and move them in response to external signals (from an Arduino board). I am using wxpython for the main program, therefore, I would need something that can be included in a wx widget…
Renato
  • 41
  • 5
0
votes
1 answer

Display objects within a function, how to NOT terminate the program after close the display?

see the example: from visual import * def hello(): newyear=2010 sphere() return newyear my problem here is when I call function hello(), a sphere display window shows up, and also prints 2010, however if I close the display window, the…
user211037
  • 1,725
  • 5
  • 16
  • 11
0
votes
1 answer

Visual module in python assign objects

I am a newb in Visual module in python, not really understand how does it assign a value to an objects. say from visual import * stars=[] galaxies=[] for i in range(10): stars+=[sphere('pos,radius,color.....')] for j in range(20): …
user211037
  • 1,725
  • 5
  • 16
  • 11
-1
votes
1 answer

Create Bar Chart

How to create a bar chart like below chart for below question using Python? Chart Question: plot job role based on number of individuals who have have master degree AND earn <=50K in the United States My table is below which I have imported from CSV…
-1
votes
1 answer

What is the syntax for preventing scientific notation in matplotlib?

I wrote the following code to create a bar plot: ords_prods_merge['order_dow'].value_counts().plot.bar() The output is a barchart which shows e.g. le6 at the y axis. I want "normal" numbers there, e.g. 6000000. Can I write something into my line of…
DataVE
  • 59
  • 8