Python Forum
TypeError: 'DataFrame' object is not callable using Pandas in Python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: TypeError: 'DataFrame' object is not callable using Pandas in Python (/thread-34808.html)



TypeError: 'DataFrame' object is not callable using Pandas in Python - sofiavlachou - Sep-02-2021

Hello to everyone, I have a question…

I’ve programmed these:


# Dependencies
import pandas as pd
from numpy import where
from matplotlib import pyplot

# Load Data
names = [“Frequency”,”Comments Count”,”Likes Count”,”Text nwords”]

dataset = pd.read_csv(“Posts.csv”, encoding=”utf-8″, sep=”;”, delimiter=None,
names=names, delim_whitespace=False,
header=0, engine=”python”)

X = dataset.values[:,0:2]
y = dataset.values[:,3]
# Explore Data
print(dataset.shape)
print(dataset.head(10))
print(dataset.describe())
print(dataset.dtypes)

X,y = dataset(n_samples=100, n_features=4, n_informative=4, n_redundant=0, n_clusters_per_class=1, random_state=4)

# create scatter plot for samples from each class
for class_value in range(3):
# get row indexes for samples with this class
row_ix = where(y == class_value)
# create scatter of these samples
pyplot.scatter(X[row_ix, 0], X[row_ix, 3])
# show the plot
pyplot.show()
I’m getting this error :

Traceback (most recent call last):

File “C:/Users/USER/pythonProject/main.py”, line 44, in

X,y = dataset(n_samples=100, n_features=4, n_informative=4, n_redundant=0, n_clusters_per_class=1, random_state=4)

TypeError: ‘DataFrame’ object is not callable
Any ideas? What can I do?

I think the problem is about the #load data.. How can I insert my own dataset?

Maybe I confuse the Dataset (as a variable) with the Dataset as a function.

Thank you in advance!!


RE: TypeError: 'DataFrame' object is not callable using Pandas in Python - buran - Sep-02-2021

(Sep-02-2021, 03:19 PM)sofiavlachou Wrote: Maybe I confuse the Dataset (as a variable) with the Dataset as a function.
which dataset function do you refer to?

In your code dataset is DataFrame object and it's not callable.