Skip to content

Instantly share code, notes, and snippets.

@minrk
Created August 9, 2012 04:37
Show Gist options
  • Star 43 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save minrk/3301035 to your computer and use it in GitHub Desktop.
Save minrk/3301035 to your computer and use it in GitHub Desktop.
2x plots for Retina displays with matplotlib and the IPython Notebook
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BKJackson
Copy link

Great gist.

@bhattg
Copy link

bhattg commented Apr 17, 2020

+1

@gr8den
Copy link

gr8den commented Sep 18, 2020

@micaleel
Copy link

Still useful in 2020! 🎉

@pifparfait
Copy link

Hi,
Would anyone know how to disable this after activating it? I don't want to delete it. I want to use it for one case and stop using it for another. I'm on jupyter notebook. c.InlineBackend.figure_format = 'retina'

Many thanks
Parfait

@dirroo
Copy link

dirroo commented Feb 12, 2024

import matplotlib.pyplot as plt
import numpy as np
import math
fig = plt.figure()
x = np.arange(0,0.3,0.0000001)
s=all(-0.5/x)
k=all(-0.125/x)
j= np.(1+math.exp(s))
m=np.(1+math.exp(k))
n=0.125np.log(j/m)
f=0.032
np.log(j/m)
r=f/n
fig, ax = plt.subplots()
ax.plot(x,r, 'g')
ax.set_xlabel(' Temprature difference')
ax.set_ylabel('Objective function')
ax.set_title('Escaled power vs Temprature difference' )
ax.legend()

@dirroo
Copy link

dirroo commented Feb 12, 2024

please help with this code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment