Giter Site home page Giter Site logo

how to turn on the grid? about mplcyberpunk HOT 6 CLOSED

dhaitz avatar dhaitz commented on May 17, 2024 1
how to turn on the grid?

from mplcyberpunk.

Comments (6)

dhaitz avatar dhaitz commented on May 17, 2024

Hi @LukaPitamic, thanks for the kind words! As mplcyberpunk is only a decorative layer, you can refer to the matplotlib docs for most options. See e.g. here for grid options. Does this answer your question?

from mplcyberpunk.

LukaPitamic avatar LukaPitamic commented on May 17, 2024

Hi @dhaitz,
thank you quick response. I'm aware of the matplotlib grid options, I already started to "reverse engineer" the look from examples. I'm kind of struggling to get the same look though. If you don't mind sharing the exact matplotlib object buildup (with all settings/parameters) - it would be super appreciated. But if you don't have it handy, please don't bother, I'll do my homework.
In any case, great work!

from mplcyberpunk.

dhaitz avatar dhaitz commented on May 17, 2024

hi @LukaPitamic, which specific example from the README are you referring to?

from mplcyberpunk.

LukaPitamic avatar LukaPitamic commented on May 17, 2024

...any example with visible grid would do, but if I have to pick one, then:

colormap

I'm after the visual balance between grid and axis. It's a combination of plot size (and DPI setting) and grid & axis lines width.
Thanks!

from mplcyberpunk.

dhaitz avatar dhaitz commented on May 17, 2024

Here you go:

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

plt.style.use("cyberpunk")
plt.rcParams['figure.dpi'] = 100

x = np.linspace(0, 2*np.pi, 128)

n = 20
colors = plt.cm.cool(np.linspace(0,1,n))

for i in range(n): 
    y = np.cos(x) * (i-(n-1)/2)
    plt.plot(x, y, color=colors[i])

mplcyberpunk.make_lines_glow()
plt.show()

Please let me know if this is sufficient.

from mplcyberpunk.

LukaPitamic avatar LukaPitamic commented on May 17, 2024

AMAZING!!!

@dhaitz, thank you very, very much.
From now on the world observed through data also looks great!

from mplcyberpunk.

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.