Jump to content

Search the Community

Showing results for tags 'pandas'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Delphi Questions and Answers
    • Algorithms, Data Structures and Class Design
    • VCL
    • FMX
    • RTL and Delphi Object Pascal
    • Databases
    • Network, Cloud and Web
    • Windows API
    • Cross-platform
    • Delphi IDE and APIs
    • General Help
    • Delphi Third-Party
  • C++Builder Questions and Answers
    • General Help
  • General Discussions
    • Embarcadero Lounge
    • Tips / Blogs / Tutorials / Videos
    • Job Opportunities / Coder for Hire
    • I made this
  • Software Development
    • Project Planning and -Management
    • Software Testing and Quality Assurance
  • Community
    • Community Management

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Delphi-Version

Found 2 results

  1. carlosanduj

    Error import pandas

    Hello everyone I'm starting to develop an application with Python4delphi and have run into a problem. The Python4delphi demos work correctly and I can communicate with python. The problem appears when I go to run import pandas as pd When I do this it shows me this error: Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\__init__.py", line 59, in <module> from pandas.core.api import ( File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\api.py", line 47, in <module> from pandas.core.groupby import ( File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\groupby\__init__.py", line 1, in <module> from pandas.core.groupby.generic import ( File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\groupby\generic.py", line 67, in <module> from pandas.core.frame import DataFrame File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\frame.py", line 142, in <module> from pandas.core.generic import ( File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\generic.py", line 187, in <module> from pandas.core.window import ( File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\window\__init__.py", line 1, in <module> from pandas.core.window.ewm import ( File "C:\Users\Carlos\AppData\Local\Programs\Python\Python312\Lib\site-packages\pandas\core\window\ewm.py", line 11, in <module> import pandas._libs.window.aggregations as window_aggregations ImportError: DLL load failed while importing aggregations: No se puede encontrar el módulo especificado. I have no problems with other imports like sys, os or matplotlib. The curious thing is that import pandas works correctly from the python console. I have uninstalled pandas and reinstalled it even downgrading the version and I can't solve it. On a colleague's PC with the same installation that I have, everything works perfectly. Does it occur to you what could be happening? Thank you very much for your time Carlos
  2. ricardo chapingo

    How to get a pandas dataframe in delphi

    Hello: i'm working with fuzzy match, my python code ends with a pandas data frame, the question is how can i to pass the data from the pandas dataframe to a delphi array? i have tried with this: for var V in VarPyIterate(MainModule.resultado) do begin ListBox1.Items.Add(V); (only get the dataframe headers) end;
×