Giter Club home page Giter Club logo

Comments (8)

Phlya avatar Phlya commented on May 17, 2024

Can you please show the full traceback? And a minimal reproducible example?

from adjusttext.

leefangu avatar leefangu commented on May 17, 2024

import matplotlib
matplotlib.use('Agg')
from adjustText import *
import numpy as np

np.random.seed(0)
x, y = np.random.random((2,30))
fig, ax = plt.subplots()
plt.plot(x, y, 'bo')
texts = [plt.text(x[i], y[i], 'Text%s' %i, ha='center', va='center') for i in range(len(x))]
adjust_text(texts)

The above code is saved in a file named test.py on the company's server in the folder /home/p57400/ERSSatisfaction/code/. I then executed the code using below command:
/usr/hdp/2.5.3.0-37/spark/bin/spark-submit /home/p57400/ERSSatisfaction/code/test.py
And below is the error I got after I executed it:

Traceback (most recent call last):
File "/home/p57400/ERSSatisfaction/code/test.py", line 11, in
adjust_text(texts)
File "/home/p57400/ERSSatisfaction/code/adjustText.py", line 424, in adjust_text
ax=ax)
File "/home/p57400/ERSSatisfaction/code/adjustText.py", line 125, in optimally_align_text
bboxes+add_bboxes]
AttributeError: 'Bbox' object has no attribute 'intersection'

from adjusttext.

leefangu avatar leefangu commented on May 17, 2024

Since I did not see the implementation of function "intersection" anywhere in your code, so is it a function you imported from somewhere else? Also, since I use /usr/hdp/2.5.3.0-37/spark/bin/spark-submit to execute my code, that means the code is running in Pyspark environment. I am not sure if that is the reason causing my issue.

Thanks,

from adjusttext.

Phlya avatar Phlya commented on May 17, 2024

I can't reproduce this... And I don't know anything about Pyspark, and whether this can cause such issues, sorry.

Intersection is a built-in method of matplotlib BBoxes, so this is very strange.

Can you try to install the package withpip --user? You shouldn't need any privileges for that.

from adjusttext.

leefangu avatar leefangu commented on May 17, 2024

can you please check your matplotlib version? I am thinking my version (which is 1.2.0) is too old to have intersection function. You can use below commands to find out the version:

import matplotlib
matplotlib.version

from adjusttext.

Phlya avatar Phlya commented on May 17, 2024

Wow 1.2??? Yeah, mine is 2.2.2, that's is probably the problem. 1.2 is a very old version!

from adjusttext.

leefangu avatar leefangu commented on May 17, 2024

I upgraded matplotlib to 2.2.3 and now it is good. Thank you for the great package!!

from adjusttext.

Phlya avatar Phlya commented on May 17, 2024

Great, thanks for letting me know!

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.