Coder Social home page Coder Social logo

Comments (4)

Phlya avatar Phlya commented on August 19, 2024

Thank you for reporting! Could you please provide an example that fails like this?

It definitely works when dates are plotted using matplotlib functionality, for example like here #14, or in the examples https://github.com/Phlya/adjustText/blob/master/examples/Examples.ipynb (cell 14 and downwards).

from adjusttext.

rudolfmayer avatar rudolfmayer commented on August 19, 2024

I have a small demo, but it actually doesn't produce the same error as above..

import datetime
import random
import matplotlib.pyplot as plt
from adjustText import adjust_text

# make up some data
x = [datetime.datetime.now() + datetime.timedelta(hours=i) for i in range(12)]
y = [i+random.gauss(0,1) for i,_ in enumerate(x)]

# plot
plt.plot(x,y)

# add labels
texts = []
for x, y, in zip(x, y):
    texts.append(plt.text(x, y, "dummy label for " + str(y), bbox={'pad': 0, 'alpha': 0}, size=10))

adjust_text(texts, x, y, arrowprops=dict(arrowstyle="-", color='k', lw=0.5), bbox={'pad': 0, 'alpha': 0}, size=10)

# beautify the x-labels
plt.gcf().autofmt_xdate()

plt.show()

produces

adjust_text(texts, x, y, arrowprops=dict(arrowstyle="-", color='k', lw=0.5), bbox={'pad': 0, 'alpha': 0}, size=10)
File "/home/xxx/.local/lib/python2.7/site-packages/adjustText/adjustText.py", line 407, in adjust_text
ax=ax)
File "/home/xxx/.local/lib/python2.7/site-packages/adjustText/adjustText.py", line 111, in optimally_align_text
c = len(get_points_inside_bbox(x, y, bbox))
File "/home/xxx/.local/lib/python2.7/site-packages/adjustText/adjustText.py", line 24, in >get_points_inside_bbox
x_in = np.logical_and(x>x1, x<x2)
TypeError: can't compare datetime.datetime to numpy.float64

from adjusttext.

Phlya avatar Phlya commented on August 19, 2024

First of all, here you are renaming x and y in the loop, so adjust_text gets confused. Second, you need to convert dates to numbers and use plot_date - as shown in the examples.
This works:

import datetime
import random
import matplotlib.pyplot as plt
from matplotlib import dates
from adjustText import adjust_text
x = [datetime.datetime.now() + datetime.timedelta(hours=i) for i in range(12)]
y = [i+random.gauss(0,1) for i,_ in enumerate(x)]
x = dates.date2num(x)
plt.plot_date(x,y)
texts = []
for xi, yi, in zip(x, y):
     texts.append(plt.text(xi, yi, str(yi), bbox={'pad': 0, 'alpha': 0}, size=10))
adjust_text(texts, x, y, arrowprops=dict(arrowstyle="-", color='k', lw=0.5), bbox={'pad': 0, 'alpha': 0}, size=10)
plt.gcf().autofmt_xdate()
plt.show()

figure_1-1

from adjusttext.

Phlya avatar Phlya commented on August 19, 2024

I think this solves the problem, so I'm closing the issue.

from adjusttext.

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.