avatarJ3

Free AI web copilot to create summaries, insights and extended knowledge, download it at here

2770

Abstract

his is what I chose to write about. It was the expertise my client was looking for, but it has since led to over $100K worth of work with this single client, both in my niche and on projects completely unrelated.</p><p id="17ad">Finding a niche is a good idea, but it doesn’t need to define what you do forever. You can use it as a foot in and a way of building your profile.</p><h1 id="ca76">2. I solved my client's problem</h1><p id="3bda">My client was originally looking for writers who had worked in the careers space to write content about changing careers. They had a specific brief they wanted to fill.</p><p id="fc29">Although they contacted me, I didn’t take that they wanted me as a given, and I still wrote a proposal detailing how I could help them achieve their goal. I focused on what I could do <i>FOR </i>them, solving their problem, and outlining clearly how I would approach the task. I told them my credentials, but I made my proposal about them and what they needed.</p><p id="ec1a">It is a common freelancer mistake to launch into what they have achieved, who they’ve worked for, and what qualifications they have without linking this to how it will help the client. Above anything else, they want to know how <i>YOU</i> are going to help <i>THEM</i>.</p><h1 id="fcc5">3. I provided proof</h1><p id="33db">We already know that Upwork has got itself known for having some poor-quality clients and freelancers. To stand above the 18 million, it’s important to show that you are not a wannabe with no experience. You are an expert at what you do.</p><p id="c5fb">To do this, you need proof. I have a writing portfolio I link to when pitching for work, I have testimonials on my Upwork profile, and I have recommendations on LinkedIn that I can also share.</p><p id="2eb3">It’s important that you can back up your talk with hard evidence showing what you can do. Especially for clients paying the biggest sums. They want to be sure they are getting the quality they are willing to pay for.</p><h2 id="799c">What have I learnt?</h2><p id="d224">The fact that people think you can’t get good clients on Upwork can be an advantage. If you have the right mindset and approach, it’s easier than you think to stand above the 18 million freelancers, many of whom aren’t expecting to strike it big. Many are aiming low, pricing low, and putting in the effort that the low expectation equates to.</p><p id="d52e">If you really have expertise to offer, and you put in the effort to pitch yourself in the right way, there are top clients to be had on Upwork.</p><h2 id="08d1">There’s more…</h2><p id="98a5">If you like my work, I have a series of articles about how to make money on Upwork in the pipeline.</p><p id="9fed">Here is my latest:</p><div id="af67" cla

Options

ss="link-block"> <a href="https://readmedium.com/how-i-made-100k-on-upwork-and-became-top-rated-with-a-100-success-score-a305ef7d8e01"> <div> <div> <h2>How I Made £100K on Upwork and Became Top Rated With a 100% Success Score</h2> <div><h3>If I can do it, so can you</h3></div> <div><p>medium.com</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*talqtG9SwMex4wuI)"></div> </div> </div> </a> </div><p id="d650">You can follow me or subscribe to my list here on Medium, or you can join my Substack community, <a href="https://redefiningsuccess.substack.com/">Redefining Success</a>, for even more. I’m looking forward to connecting.</p><p id="e0a8">Check out some of my latest posts:</p><div id="ed1c" class="link-block"> <a href="https://readmedium.com/how-you-define-success-could-be-the-key-to-your-happiness-7e87f5a5b9f2"> <div> <div> <h2>How You Define Success Could Be the Key to Your Happiness</h2> <div><h3>And also your unhappiness…</h3></div> <div><p>medium.com</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*y6XeGW7HiHo0F9_o)"></div> </div> </div> </a> </div><div id="071c" class="link-block"> <a href="https://readmedium.com/how-a-train-hopper-made-me-see-how-messed-up-our-working-system-is-8f5dc3b6dd3c"> <div> <div> <h2>How a Train Hopper Made Me See How Messed Up Our Working System Is</h2> <div><h3>We’ve got it so backwards</h3></div> <div><p>medium.com</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*S1pUr2HzkJKbUSZB)"></div> </div> </div> </a> </div><div id="1424" class="link-block"> <a href="https://readmedium.com/when-i-called-myself-a-writer-the-money-came-in-fc77468e0627"> <div> <div> <h2>When I Called Myself a Writer, the Money Came In</h2> <div><h3>What you tell yourself matters</h3></div> <div><p>medium.com</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*AYK0DtsukpP2-1cF)"></div> </div> </div> </a> </div></article></body>

Seaborn Python Review

Reviewing theses Plotting & Statistics Packs — #PySeries#Episode 20

Seaborn is a library that uses Matplotlib underneath to plot graphs. It will be used to visualize random distributions.

Answer these eight questions:)

Visualization Exercise

The Data

This classic dataset contains the prices and other attributes of almost 54,000 diamonds. It’s a great dataset for beginners learning to work with data analysis and visualization.

https://www.kaggle.com/shivam2503/diamonds

Google Drive:

Source: Diamond.csv

Content:
price price in US dollars ($326 — $18,823)
carat weight of the diamond (0.25.01)
cut quality of the cut (Fair, Good, Very Good, Premium, Ideal)
color diamond colour, from J (worst) to D (best)
clarity a measurement of how clear the diamond is (I1 (worst), SI2, SI1, VS2, VS1, VVS2, VVS1, IF (best))
x length in mm (010.74)
y width in mm (058.9)
z depth in mm (031.8)
depth total depth percentage = z / mean(x, y) = 2 * z / (x + y) (4379)
table width of top of diamond relative to widest point (4395)
Follow the instructions to recreate the plots using this data:

01#PyEx — Python — MatlilPlot & Seaborn —Importing MatlibPlot:

Import pandas, matplotlib.pyplot and seaborn

02#PyEx — Python — MatlilPlot & Seaborn— Plotting Graphs:

Read in the data set diamonds.csv

03#PyEx — Python — MatlilPlot & Seaborn — Plotting Graphs :

Create a scatterplot of price versus carat as shown below:

04#PyEx — Python — MatlilPlot & Seaborn — Plotting Graphs:

Make the previous plot larger with figure size (10, 8):

05#PyEx — Python — MatlilPlot & Seaborn — Plotting Graphs :

`Create a histogram of the price column with displot as shown below. Observe the x-axis limits. Also, set bins=50 and height=8:

06#PyEx — Python — MatlilPlot & Seaborn —Plotting Graphs :

Create a count plot of the instances per cut type as shown below:

07#PyEx — Python — MatlilPlot & Seaborn —Plotting Graphs :

7. Create a large box plot figure showing the price distribution per cut type as shown below. Set (10, 8) as figure size.

08#PyEx — Python — MatlilPlot & Seaborn —Plotting Graphs :

Figure out how to change the ordering of the box plot as shown below:

If you find this post helpful, please consider to subscribe to the Jungletronics for more posts like this.

Until next time!

I wish you excellent day!

Be safe!

Cheers!

Colab Notebook Anwers link:)

Google Drive link:)

Google Colab Notebooks are here:

Credits & References

INTRODUÇÃO A MACHINE LEARNING PARA CERTIFICAÇÃO HCIA-AI by crateus.ufc.br

https://www.huawei.com/en/

Posts Related:

00Episode#PySeries — Python — Jupiter Notebook Quick Start with VSCode — How to Set your Win10 Environment to use Jupiter Notebook

01Episode#PySeries — Python — Python 4 Engineers — Exercises! An overview of the Opportunities Offered by Python in Engineering!

02Episode#PySeries — Python — Geogebra Plus Linear Programming- We’ll Create a Geogebra program to help us with our linear programming

03Episode#PySeries — Python — Python 4 Engineers — More Exercises! — Another Round to Make Sure that Python is Really Amazing!

04Episode#PySeries — Python — Linear Regressions — The Basics — How to Understand Linear Regression Once and For All!

05Episode#PySeries — Python — NumPy Init & Python Review — A Crash Python Review & Initialization at NumPy lib.

06Episode#PySeries — Python — NumPy Arrays & Jupyter Notebook — Arithmetic Operations, Indexing & Slicing, and Conditional Selection w/ np arrays.

07Episode#PySeries — Python — Pandas — Intro & Series — What it is? How to use it?

08Episode#PySeries — Python — Pandas DataFrames — The primary Pandas data structure! It is a dict-like container for Series objects

09Episode#PySeries — Python — Python 4 Engineers — Even More Exercises! — More Practicing Coding Questions in Python!

10Episode#PySeries — Python — Pandas — Hierarchical Index & Cross-section — Open your Colab notebook and here are the follow-up exercises!

11Episode#PySeries — Python — Pandas — Missing Data — Let’s Continue the Python Exercises — Filling & Dropping Missing Data

12Episode#PySeries — Python — Pandas — Group By — Grouping large amounts of data and compute operations on these groups

13Episode#PySeries — Python — Pandas — Merging, Joining & Concatenations — Facilities For Easily Combining Together Series or DataFrame

14Episode#PySeries — Python — Pandas — Pandas Dataframe Examples: Column Operations

15Episode#PySeries — Python — Python 4 Engineers — Keeping It In The Short-Term Memory — Test Yourself! Coding in Python, Again!

16Episode#PySeries — NumPy — NumPy Review, Again;) — Python Review Free Exercises

17Episode#PySeriesGenerators in Python — Python Review Free Hints

18Episode#PySeries — Pandas Review…Again;) — Python Review Free Exercise

19Episode#PySeriesMatlibPlot & Seaborn Python Libs — Reviewing theses Plotting & Statistics Packs

20Episode#PySeries —Seaborn Python Review — Reviewing theses Plotting & Statistics Packs (this one)

Python3
Seaborn
Python
Data Science
Data Visualization
Recommended from ReadMedium