Top "Data-analysis" questions

Data Analysis involves extracting meaning and insights from raw data.

Spark-sqlserver connection

Can we connect spark with sql-server? If so, how? I am new to spark, I want to connect the server …

sql-server apache-spark data-analysis
How to capture raw signal from wireless router?

I have seen several projects now which derive novel spatial information from radio data collected from a typical wireless router: …

wifi signal-processing radio wireless data-analysis
General techniques to work with huge amounts of data on a non-super computer

I'm taking some AI classes and have learned about some basic algorithms that I want to experiment with. I have …

python database machine-learning data-analysis kaggle
Is a column in pandas.DF() monotonically increasing?

I can check if the index of a pandas.DataFrame() is monotonically increasing by using is_monotonic method. However, I …

python pandas data-analysis
seaborn multiple variables group bar plot

I have pandas dataframe, one index(datetime) and three variables(int) date A B C 2017-09-05 25 261 31 2017-09-06 261 1519 151 2017-09…

pandas matplotlib seaborn data-analysis
How to add extra stop words in addition to default stopwords in wordcloud?

I would like to add certain words to the default stopwords list used in wordcloud. Current code: all_text = " ".join(…

python matplotlib data-analysis stop-words word-cloud
How do you deal with missing data using numpy/scipy?

One of the things I deal with most in data cleaning is missing values. R deals with this well using …

python numpy data-analysis
what is major difference between histogram,countplot and distplot in Seaborn library?

I think they all look the same but there must be some difference. They all take a single column as …

python matplotlib visualization seaborn data-analysis
Custom transformer for sklearn Pipeline that alters both X and y

I want to create my own transformer for use with the sklearn Pipeline. Hence I am creating a class that …

python numpy machine-learning scikit-learn data-analysis
how to merge two dataframes and sum the values of columns

I have two dataframes df1 Name class value Sri 1 5 Ram 2 8 viv 3 4 df2 Name class value Sri 1 5 viv 4 4 My desired output …

python pandas dataframe data-analysis