Python: filter(), map(), reduce(), and apply() functions
https://aaweg-i.medium.com/python-filter-map-reduce-and-apply-functions-6e2dbdbc6a7e
https://aaweg-i.medium.com/python-filter-map-reduce-and-apply-functions-6e2dbdbc6a7e
Medium
Python: filter(), map(), reduce(), and apply() functions
1. Lambda Functions:
Cracking Codes with Python: Strings and DataFrames Made Easy!
https://medium.com/@23saini/cracking-codes-with-python-strings-and-dataframes-made-easy-500db4a41c93
https://medium.com/@23saini/cracking-codes-with-python-strings-and-dataframes-made-easy-500db4a41c93
Medium
Cracking Codes with Python: Strings and DataFrames Made Easy!
Welcome, Python enthusiasts, to another exciting chapter of our Python journey designed for beginners and young learners. Today, we are…
Debunking TikTok Finance: The Real Profits of Iron Condors
https://medium.com/@rupertdodkins/debunking-tiktok-finance-the-real-profits-of-iron-condors-46264a9269f3
https://medium.com/@rupertdodkins/debunking-tiktok-finance-the-real-profits-of-iron-condors-46264a9269f3
Medium
Debunking TikTok Finance: The Real Profits of Iron Condors
Introduction
Implementing classification model without scikit-learn
https://medium.com/@luvvaggarwal2002/implementing-classification-model-without-scikit-learn-75e6c7ec0a16
https://medium.com/@luvvaggarwal2002/implementing-classification-model-without-scikit-learn-75e6c7ec0a16
Medium
Implementing classification model without scikit-learn
In the world of machine learning and data science, classification problems are among the most common and fundamental. These problems…
Python: Sorting, Filtering, and Grouping in Pandas
https://aaweg-i.medium.com/python-sorting-filtering-and-grouping-in-pandas-37b01e1f2065
https://aaweg-i.medium.com/python-sorting-filtering-and-grouping-in-pandas-37b01e1f2065
Medium
Python: Sorting, Filtering, and Grouping in Pandas
1. df[df[col] > 0.5] - Rows where 'col' is greater than 0.5
Mastering Data Preparation for Your Dream Data Job: Using Job Postings Data
https://medium.com/@thedataisaac/mastering-data-preparation-for-your-dream-data-job-using-job-postings-data-4063f91fbc2b
https://medium.com/@thedataisaac/mastering-data-preparation-for-your-dream-data-job-using-job-postings-data-4063f91fbc2b
Medium
Mastering Data Preparation for Your Dream Data Job: Using Job Postings Data
Data related jobs are fascinating for many of us who love data. We want to know what skills are needed to get a job, how much data…
Basic File Transportation Format Part 2.
https://medium.com/@oludaredolamu/basic-file-transportation-format-part-2-1d0a9b6b6ea4
https://medium.com/@oludaredolamu/basic-file-transportation-format-part-2-1d0a9b6b6ea4
Medium
Basic File Transportation Format Part 2.
In my last article, I talked vastly about the JavaScript Object Notation (JSON) format for data interchange over the web. In this article…
Is machine translation finally production-ready? Maybe.
https://medium.com/mpb-tech/is-machine-translation-finally-production-ready-maybe-9e1ea962447f
https://medium.com/mpb-tech/is-machine-translation-finally-production-ready-maybe-9e1ea962447f
Medium
Is machine translation finally production-ready? Maybe.
Phil Smith, Principal Architect at MPB, on automating website localisation using Google Translate API & Python
Convert COCO format annotations to YOLO format
https://medium.com/@WamiqRaza/convert-coco-format-annotations-to-yolo-format-4380880d9b3b
https://medium.com/@WamiqRaza/convert-coco-format-annotations-to-yolo-format-4380880d9b3b
Medium
Convert COCO format annotations to YOLO format
The COCO (Common Objects in Context) dataset is often used as a standard for object detection tasks. It gives a lot of information about…
Python: Combining DataFrames (append, concat and join)
https://aaweg-i.medium.com/python-combining-dataframes-append-concat-and-join-8dee6111c077
https://aaweg-i.medium.com/python-combining-dataframes-append-concat-and-join-8dee6111c077
Medium
Python: Combining DataFrames (append, concat and join)
df1.append(df2) -
Python If, Elif, and Else Stateme: A Beginner’s Tutorial with Examples
https://medium.com/@informationalstories/python-if-elif-and-else-stateme-a-beginners-tutorial-with-examples-a8dce6f9820a
https://medium.com/@informationalstories/python-if-elif-and-else-stateme-a-beginners-tutorial-with-examples-a8dce6f9820a
Medium
Python If, Elif, and Else Stateme: A Beginner’s Tutorial with Examples
Programming often involves making decisions, and Python’s if, elif, and else statements offer the necessary mechanisms to execute…
Using Python to Scrape Marathon Results for Data Analysis
https://medium.com/@brianrock.nj/using-python-to-scrape-marathon-results-for-data-analysis-62ed03a4280b
https://medium.com/@brianrock.nj/using-python-to-scrape-marathon-results-for-data-analysis-62ed03a4280b
Medium
Using Python to Scrape Marathon Results for Data Analysis
I’ve recently been working on a series of articles analyzing data from marathons. You can read the introduction here if you’re interested…
Automate Instagram Posts with Python: A Step-by-Step Guide
https://medium.com/@rajdattkokate/automate-instagram-posts-with-python-a-step-by-step-guide-4b055f356b31
https://medium.com/@rajdattkokate/automate-instagram-posts-with-python-a-step-by-step-guide-4b055f356b31
Medium
Automate Instagram Posts with Python: A Step-by-Step Guide
📸 Do you want to streamline your Instagram posting process using Python? In this blog, we’ll walk you through the process of automating…
Simplify Your Code with List Comprehension in Python: A Practical Guide for Efficient Programming
https://khadkagopal.medium.com/simplify-your-code-with-list-comprehension-in-python-a-practical-guide-for-efficient-programming-c7320faadd27
https://khadkagopal.medium.com/simplify-your-code-with-list-comprehension-in-python-a-practical-guide-for-efficient-programming-c7320faadd27
Medium
Simplify Your Code with List Comprehension in Python: A Practical Guide for Efficient Programming
List is the data type in Python that holds sequential data items in ordered or unordered arrangement. The data inside the list might be…
Comprehensive Guide to Pandas DataFrame Column Operations
https://levelup.gitconnected.com/comprehensive-guide-to-pandas-dataframe-column-operations-d6f8d17f3037
https://levelup.gitconnected.com/comprehensive-guide-to-pandas-dataframe-column-operations-d6f8d17f3037
Medium
Comprehensive Guide to Pandas DataFrame Column Operations
Pandas, the Python data manipulation library, is renowned for its powerful DataFrame structure. A DataFrame is essentially a…