Open
Conversation
How to deal with text data.
Update README.md
Updated contributor list.
Updated supporting data for ML, Deep Learning and Data Science learning curve.
Added reference links for ML roadmap
Contributor Update
Add an example for parsing arguments
add sentiment analysis notebook
Added program to change 2 no.s without arithmetic operations
Added some advanced python inbuild functions explanation and implemet…
User name included
added link to Fast.ai
Update README.md
this is the program for rock, paper, scissor
create rock, paper,scissor program
just added a link in README.md
Added demo for basic operations on files
Added sample Text processing
Update README.md
Update README.md
Updating the Random Forest Classifier as a Bagging Ensemble example.
…estclassifier Ensemble Model Update
Ensemble Bagging Model using Random Forest Classifier
Adding jupyter notebook for basics of XGBoost
Create test.py
I have added a KMP Algorithm . This algorithm used for searching a pattern/string in a another text/string using an array of prefixes and suffixes. It overrides the Naive algorithm and improves the worst case to O(n).
Implemented KMP algorithm in python
Update and rename test.py to next_smallest_palindromic.py
Create readme.md
basics syntax
Add files via upload
Add files via upload
Add files via upload
Add files via upload
Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1.2 to 5.4. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](yaml/pyyaml@5.1.2...5.4) Signed-off-by: dependabot[bot] <support@github.com>
…ons/sample_oo_dashboard/pyyaml-5.4 Bump pyyaml from 5.1.2 to 5.4 in /sample applications/sample_oo_dashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
import math
i=12.0
q=5.0
print "Cartesian: (%.1f,%.1f)" %(i,q)
print "Polar: r = %.1f" %math.sqrt(math.pow(i,2) + math.pow(q,2)) + ", Theta = %.1f" %math.degrees(math.atan(q/i)) + " degrees"