Please improve the ActiveDataSet function within Statistica's Python node to ensure it can run with the latest versions of pandas.
Currently, when the number of cells in the dataset input to the Python node exceeds a certain threshold, the ActiveDataSet function internally uses the .append() method to construct a DataFrame. Since pandas version 2.0.0 and later have completely removed the .append() method, this results in an error.
Considering that the Python version meeting system requirements has been raised, shouldn't the required pandas version also be increased to maintain dependency compatibility with other packages? I request this improvement.