Coder Social home page Coder Social logo

Comments (7)

DongdongGui avatar DongdongGui commented on June 1, 2024 1

image

import numpy as np
import matplotlib.pyplot as plt
import scienceplots

def model(x, p):
    return x ** (2 * p + 1) / (1 + x ** (2 * p))

pparam = dict(xlabel='Voltage (mV)', ylabel=r'Current ($\mu$A)')

x = np.linspace(0.75, 1.25, 201)

with plt.style.context(['science']):
    fig, ax = plt.subplots()
    for p in [10, 15, 20, 30, 50, 100]:
        ax.plot(x, model(x, p), label=p)
    ax.legend(title='Order')
    ax.autoscale(tight=True)
    ax.set(**pparam)
    plt.show()

I run the above code and still report TypeError: unsupported operand type(s) for *: 'NoneType' and 'int'.

from scienceplots.

DongdongGui avatar DongdongGui commented on June 1, 2024 1

test 1.zip

from scienceplots.

echedey-ls avatar echedey-ls commented on June 1, 2024 1

I'm pretty sure it has nothing to do with SciencePlots.
Edit: try with [] styles instead of ['science'] to isolate the issue and check if that's the case.
I don't have your same setup, and it will take me some time till I can try it. I've only tested locally with basic Python and on Google Colab.
Have you tried updating Anaconda and IPython? It looks like a problem between Matplotlib and the output formatter.

Thanks for sharing the resources.

from scienceplots.

echedey-ls avatar echedey-ls commented on June 1, 2024

Next time, provide code with triple backticks: ``` code ```
Can't reproduce with following code (only added plt.show() inside the with context):

import numpy as np
import matplotlib.pyplot as plt
import scienceplots

def model(x, p):
    return x ** (2 * p + 1) / (1 + x ** (2 * p))

pparam = dict(xlabel='Voltage (mV)', ylabel=r'Current ($\mu$A)')

x = np.linspace(0.75, 1.25, 201)

with plt.style.context(['science']):
    fig, ax = plt.subplots()
    for p in [10, 15, 20, 30, 50, 100]:
        ax.plot(x, model(x, p), label=p)
    ax.legend(title='Order')
    ax.autoscale(tight=True)
    ax.set(**pparam)
    plt.show()

Check indentation and/or copy from the examples file in the repo.

from scienceplots.

DongdongGui avatar DongdongGui commented on June 1, 2024

Test1. zip is the running file

from scienceplots.

DongdongGui avatar DongdongGui commented on June 1, 2024

Thank you for your reply!
image
I tried using the '[ ]' style and '["science","notebook"]' style, both of which worked properly, but other styles still report the TypeError.

from scienceplots.

echedey-ls avatar echedey-ls commented on June 1, 2024

I'm glad to hear that!

from scienceplots.

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.