Recent questions tagged python

0 0 votes
1 1 answer
736
736 views
0 0 votes
1 1 answer
2.1k
2.1k views
0 0 votes
1 1 answer
730
730 views
1 1 vote
1 1 answer
1.0k
1.0k views
1 1 vote
1 1 answer
688
688 views
Which of the following feature transformations would be a good choice to transform a categorical variable into a matrix binary feature?A. One-hot-encodingB. Principal Com...
1 1 vote
1 1 answer
785
785 views
I have a dataframe like belowMT_001 MT_002 hour 2012-01-01 00:15:00 3.807107 22.759602 00:15:00 2012-01-01 00:30:00 5.076142 22.759602 00:30:00 2012-01-01 00:45:00 3.8071...
0 0 votes
1 1 answer
722
722 views
0 0 votes
1 1 answer
744
744 views
0 0 votes
1 1 answer
693
693 views
If a big company such as Google behind it, with high probability it is a great library such as TensorFlow. But in general how can I found out?
2 2 votes
2 2 answers
1.3k
1.3k views
Hello,I am trying to gain insight of the data but having hard time plotting it.Suppose I have a data frame like belowIDFeature 1Class1agood2agood3bgood4bbad5abad6abad7bba...
1 1 vote
0 0 answers
471
471 views
I made my own transformation to drop some of the features not required in the dataframe but I can't seem to get it working. Thoughts ?https://repl.it/@Neo_sauga/HarmfulNe...
2 2 votes
1 1 answer
880
880 views
I am not sure why my below code is not working any thoughts ?https://repl.it/@Neo_sauga/UnselfishFatBrains
1 1 vote
1 answers 1 answer
6.1k
6.1k views
1 1 vote
1 answers 1 answer
15.4k
15.4k views
I can update all the libraries and packages on Anaconda using the following command:conda update all But it does not update conda itself. Is there any special command fo...
2 2 votes
1 1 answer
642
642 views
In any coding assignment or task at a higher educational level (University/College), would it be acceptable to use less coding and list modules or libraries that may not ...
4 4 votes
1 1 answer
20.2k
20.2k views
1 1 vote
3 3 answers
4.0k
4.0k views
The KNN function in the sklearn library (when coded properly), outputs the points closest to p based on the value of k, and others.The point(s) would include itself when ...
1 1 vote
1 1 answer
816
816 views
Is there any big difference between ingle quotation (' ') and double ("") quotation in Python?