Mahdi Farmahini Farahani
Mahdi Farmahini Farahani
The error you're encountering, `ModuleNotFoundError: No module named 'pkg_resources'`, typically occurs when the `setuptools` package is not installed or is not properly configured in your Python environment. Here are some...
import matplotlib.pyplot as plt from matplotlib.collections import PolyCollection fig = plt.figure() ax = plt.gca(projection='3d') poly1 = PolyCollection([[[-2,-2], [-2,2], [0,3], [2,2], [2,-2]]], color='red') poly2 = PolyCollection([[[-1,-1], [-1,1], [1,1], [1,-1]]], color='blue') poly3...
> @aradfarahani is there an open issue or something else you can point to for **why** you're implementing this? I was making a 3D geoelectrical model that was supposed to...
> Thanks! Can you provide an example of the types of visualization you're trying to achieve? For Sure! Before:  After: 
> Hi @aradfarahani , > > the PR looks good already, could you: > > 1. add a bit more information/context in the def's docstring, e.g. a reference to the...
> Hi, thanks ! I meant 'in the code'. What are the other options than FK ? Tau-P transform is often compared to the F-K transform (frequency-wavenumber), which is another...
> Oh and this AI-generated example above doesn't match what you propose in the code, could you check this ? Done!