Recent questions tagged python

0 0 votes
1 1 answer
615
615 views
0 0 votes
1 1 answer
2.0k
2.0k views
0 0 votes
1 1 answer
632
632 views
1 1 vote
1 1 answer
902
902 views
1 1 vote
1 1 answer
569
569 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
677
677 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
605
605 views
0 0 votes
1 1 answer
596
596 views
0 0 votes
1 1 answer
585
585 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.1k
1.1k 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
400
400 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
757
757 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
5.9k
5.9k views
1 1 vote
1 answers 1 answer
15.2k
15.2k 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
553
553 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.0k
20.0k views
1 1 vote
3 3 answers
3.7k
3.7k 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
745
745 views
Is there any big difference between ingle quotation (' ') and double ("") quotation in Python?