Posts by Luis Miguel • 35 points
5 posts
-
0
votes1
answer30
viewsQ: Up to how many different levels can a classifier predict?
I was recently doing a machine learning model and I was wondering if I should use logistic regression. The documentation says that this classifier can predict binary values (0 or 1). In my case, I…
-
0
votes1
answer328
viewsQ: Change the maximum values on a bar chart in Seaborn(barplot)
When I go to "plot" a bar chart it modifies my values on the Y-axis proportionally , but I want them to stay with the real values they have in the dataset, as I change this configuration? dataset:…
-
-1
votes1
answer61
viewsQ: Web Scraping iterator taking only elements with odd index
was making Webscraping from a sales page of cars and for some reason while iterating the data to collect the Mileage data round the iterator simply repeated the items, ie : 27000 27000 48000 48000…
-
0
votes1
answer24
viewsQ: plotting plineplot with Seaborn excluding certain elements
I would like to plot a lineplot with sns but didn’t want it to plot a specific line sns.set_palette('Accent') sns.set_style('darkgrid') ax = sns.lineplot(x=dados['date'],y=dados['cases'],err_style=…
-
-1
votes2
answers62
viewsQ: for function in Python3 - how to print all elements of a series
i = 0 for item in test['text'][i]: print(test['text'][i]) print(i) i+=1 in my dataset "test" I have 3262 items( is a series ) however when I do "for" it "printa" only 32 items…