GithubHelp home page GithubHelp logo

Comments (3)

telegraphic avatar telegraphic commented on August 24, 2024

Can you try with this new script? I made a local edit and hadn't pushed it to github

from blimpy.

telegraphic avatar telegraphic commented on August 24, 2024

PS: You're probably also seeing

/usr/local/lib/python2.7/dist-packages/matplotlib/__init__.py:1350: UserWarning:  This call to matplotlib.use() has no effect
because the backend has already been chosen;
matplotlib.use() must be called *before* pylab, matplotlib.pyplot,
or matplotlib.backends is imported for the first time.

What is likely happening in your version is that matplotlib is necessarily loaded when you import filterbank. For example, this code should work:

import filterbank
import random

x = random.sample(range(1,100), 10)
y = random.sample(range(1,100), 10)
filterbank.plt.plot(x,y)
filterbank.plt.savefig('myplot.pdf', format='pdf')

from blimpy.

umranhaji avatar umranhaji commented on August 24, 2024

You are correct, I am seeing the UserWarning above.

Anyways, I cloned the most recent version of filterbank.py and tried it; that seems to have fixed the problem and the plot is generated without issue, though the UserWarning persists. 😕

EDIT: Never mind. When I use the following code there is no warning and it runs as expected:

import filterbank
import random
import matplotlib.pyplot as plt

x = random.sample(range(1,100), 10)
y = random.sample(range(1,100), 10)
plt.plot(x,y)
plt.savefig('myplot.pdf', format='pdf')

Thank you!

from blimpy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.