Top "Data-science" questions

Implementation questions about data science.

What is the difference between Spyder and Jupyter?

Python community, I am learning Python for data science, but my problem is that I still don't understand the difference …

python data-science jupyter spyder
Removing non-English words from text using Python

I am doing a data cleaning exercise on python and the text that I am cleaning contains Italian words which …

python data-science data-cleaning
How to resolve "IndexError: too many indices for array"

My code below is giving me the following error "IndexError: too many indices for array". I am quite new to …

python arrays machine-learning indices data-science
How to do superscripts and subscripts in Jupyter Notebook?

I want to to use numbers to indicate references in footnotes, so I was wondering inside of Jupyter Notebook how …

python jupyter-notebook ipython-notebook jupyter data-science
Apply StandardScaler to parts of a data set

I want to use sklearn's StandardScaler. Is it possible to apply it to some feature columns but not others? For …

python pandas scikit-learn scale data-science
How to change the X axis range in seaborn in python?

By default the seaborn displaces the X axis ranges from -5 to 35 in distplots. But I need to display the …

python seaborn data-science
Macbook m1 and python libraries

Is new macbook m1 suitable for Data Science? Do Data Science python libraries such as pandas, numpy, sklearn etc work …

python pandas scikit-learn data-science apple-silicon
What is the difference between Big Data and Data Mining?

As Wikpedia states The overall goal of the data mining process is to extract information from a data set and …

hadoop machine-learning bigdata data-mining data-science
fit_transform() takes 2 positional arguments but 3 were given with LabelBinarizer

I am totally new to Machine Learning and I have been working with unsupervised learning technique. Image shows my sample …

python scikit-learn data-science
How do I extract the date/year/month from pandas dataframe?

I'm trying to extract year/date/month info from the 'date' column in pandas dataframe. Here is my sample code: …

python pandas dataframe data-science