Questions tagged [enthought]

Enthought provides scientific and analytic software, training, and consulting solutions utilizing Python. The Enthought Canopy (formerly EPD, or Enthought Python Distribution) software platform includes an integrated analysis and application development environment plus a Python distribution with over 200 pre-compiled core scientific and analytic libraries such as SciPy, NumPy, Pandas, Matplotlib, and IPython.

Enthought provides scientific and analytic software, training, and consulting solutions utilizing Python.

The Enthought Canopy (formerly EPD, or Enthought Python Distribution) software platform includes an integrated analysis and application development environment plus a Python distribution with over 200 pre-compiled core scientific and analytic libraries such as SciPy, NumPy, Pandas, Matplotlib, and IPython.

In 2014, Enthought introduced Enthought Training on Demand, an online learning library of Python training modules developed for scientists, engineers, and data analysts. The company also provides live Python training classes and consulting solutions for enterprises in industries such as finance, energy, aerospace, consumer products, and biotechnology.

The company was founded in 2001 and is headquartered in Austin, Texas, with additional offices in Cambridge, UK, and Mumbai, India.

835 questions
4
votes
0 answers

Simple popup dialog opens too long with Chaco

I need the small popup dialog to appear at cursor position when user clicks my Chaco plot. But when there are many points in the plot (~100.000) the popup window loads too slow (1-2 seconds) and not responsive in the beginning. So the application…
funnyp0ny
  • 298
  • 1
  • 12
4
votes
2 answers

numpy.random has no attribute 'choice'

I am using python 2.7.2 |EPD 7.1-1 (64-bit) and for some reason numpy.random.choice is not working: from the terminal window: d-108-179-168-72:~ home$ python Enthought Python Distribution -- www.enthought.com Version: 7.1-1 (64-bit) Python 2.7.2…
Laura
  • 1,822
  • 3
  • 15
  • 23
4
votes
1 answer

Traits Enum values

I'm having trouble setting an Enum value to one of it's possibility in a class... If I have in an iPython window: eTest = Enum('zero', 'one', 'two', 'three') I can do: eTest.value = eTest.values[2] and print eTest.value gives me the correct…
Steve76063
  • 317
  • 2
  • 10
4
votes
1 answer

Can I output a mayavi plot as .vtk file to embed in a web app?

Okay, a little background here. I made a script that plots a dataset as 3d line plots using mlab.plot3d(), multiple times in Mayavi, after reading it from an xlsx file. Now, I am trying to make a web app to see the created 3d models in a web browser…
4
votes
2 answers

How to join/connect/group multiple objects in Mayavi2

I would like to combine multiple Mayavi objects into a single "grouped" object so that I control all of their properties together. For example I created the following bi-convex lens shape by combining 3 built-in surfaces (two spheres and one…
4
votes
1 answer

how do I catch a keyboard event in a mayavi animation

I am looking for a way to catch keyboard events in order to cycle through different datasets in a mayavi animation. My basic loop is: while 1: time = TIME() - zero wx.Yield() atomsanim[:,:3] = atoms[:,3:]*cos(speed*time) + atoms[:,:3] …
sonium
  • 918
  • 1
  • 11
  • 25
4
votes
1 answer

How to use mayavi.tools.pipeline.transform_data to complete a rotation around the x-axis

I am trying to perform a rotation of my data about the X-axis. I figure out that I should use the mayavi.tools.pipeline.transform_data function but I can't figure out a way of using it... I thing I need to apply a rotation matrix to the data but I…
TazgerO
  • 535
  • 6
  • 22
4
votes
1 answer

How to use mask for Mayavi's grid plots?

I'm using python and mayavi2 for 3D plotting. I'm plotting a sphere using the mesh command, and now I want to color some of the panels of the sphere a different color. It seems like this is what the mask option is for, but I can't get it to work…
capybaralet
  • 1,757
  • 3
  • 21
  • 31
4
votes
0 answers

How to install CVXOPT with Enthought python (Canopy)

Before I start, let me put alternative titles for this post: How to compile CVXOPT with Intel MKL ? How to change __init__.py in CVXOPT to compile with Intel MKL ? Let me explain the issue. I am trying to install pystruct with Enthought python…
kayhan
  • 373
  • 3
  • 11
4
votes
1 answer

How to change traitsui view dynamically in active window

I would like to set up an interface such that, upon listening to a trait, the interface will switch between different predefined View objects. Here is an example: class App(Handler): info=Instance(UIInfo) …
aestrivex
  • 5,170
  • 2
  • 27
  • 44
4
votes
2 answers

setting path in terminal

I am installing Homebrew on my Mac in order to install Macvim. After installing Homebrew, I am prompted to run brew doctor, which in turn generates a number of warnings. I have resolved several of these but am stuck on two: Warning: Enthought Python…
user1936292
4
votes
1 answer

Python Traits UI (Enthought)

I am working with some code that uses Traits UI to show a dialog from which the user is able to select two files: class Files(HasTraits): filename_1 = File(exists=True) filename_2 = File(exists=True) traits_ui = View( …
4
votes
4 answers

IPython, Sage, Dependencies, Anaconda, and Package Integration?

I've just started using IPython for interactive development and exploratory research, which I've found really exciting with all the cool features and possibilities. I am using the Anaconda package manager to manage dependencies, which includes…
Stix
  • 159
  • 9
4
votes
5 answers

Installing a package to Canopy

I'm really new to coding, programming, Python, and just computers in general, so I need some help with Canopy. I've been having pretty consistent troubles installing any packages to Canopy; some stuff is in the internal package manager,but whenever…
vdogsandman
  • 5,289
  • 8
  • 21
  • 21
4
votes
2 answers

Best way to install OpenCV on Windows with Enthought Canopy Python?

I've got the Enthought Canopy Python distribution on Windows, and I'd like to add the OpenCV python bindings. I have downloaded the latest OpenCV from http://sourceforge.net/projects/opencvlibrary/ but I don't see any setup.py file. So I'm…
ZZZ
  • 704
  • 9
  • 18