How to print 'ந ே' as 'நே' in matplotlib plot function? Rendering ProblemNon-ASCII characters in MatplotlibHow to flush output of print function?How do you change the size of figures drawn with matplotlib?How to print without newline or space?How to make a chain of function decorators?How to change the font size on a matplotlib plotHow to put the legend out of the plotHow to print to stderr in Python?Save plot to image file instead of displaying it using MatplotlibHow to make IPython notebook matplotlib plot inlineInstallation Issue with matplotlib Python
Trivial non-dark twist in dark fantasy
How did pilots avoid thunderstorms and related weather before “reliable” airborne weather radar was introduced on airliners?
Importance of moon phases for Apollo missions
Why does airflow separate from the wing during stall?
What would be the effects of (relatively) widespread precognition on the stock market?
Why are Oscar, India, and X-Ray (O, I, and X) not used as taxiway identifiers?
Does switching on an old games console without a cartridge damage it?
Why are the phonemes of Tutankhamun's throne name transliterated out of order?
Meaning of 行かしてもらうから
Strange LED behavior
My guitar strings go loose when I tighten them?
Monday's Blocking Donimoes Problem
I am a dual citizen of United States and Mexico, can I use my Mexican license in california when visiting?
Why does the salt in the oceans not sink to the bottom?
Can I make Ubuntu 18.04 switch between multiple windows of the program by just clicking the icon?
Stellen - Putting, or putting away?
Found more old paper shares from broken up companies
As the Ferris wheel turns
"It is what it is"
What is the standard representation of a stop which could be either ejective or aspirated?
Pass USB 3.0 connection through D-SUB connector
Book in which the "mountain" in the distance was a hole in the flat world
Cargo capacity of a kayak
Has Iron Man made any suit for underwater combat?
How to print 'ந ே' as 'நே' in matplotlib plot function? Rendering Problem
Non-ASCII characters in MatplotlibHow to flush output of print function?How do you change the size of figures drawn with matplotlib?How to print without newline or space?How to make a chain of function decorators?How to change the font size on a matplotlib plotHow to put the legend out of the plotHow to print to stderr in Python?Save plot to image file instead of displaying it using MatplotlibHow to make IPython notebook matplotlib plot inlineInstallation Issue with matplotlib Python
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Unable to print tamil words correctly in matplotlib plot function.
Here is my code:
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
python matplotlib tamil
add a comment |
Unable to print tamil words correctly in matplotlib plot function.
Here is my code:
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
python matplotlib tamil
You need to use a font that support those characters.
– Goyo
Mar 26 at 13:39
1
Related – Non-ASCII Characters in Matplotlib
– TrebledJ
Mar 26 at 13:47
@TrebledJ I tried all the methods listed in the link. But could not be able to resolve the problem.
– RaRaa
Mar 27 at 3:11
@RaRaa Please show code (a minimal reproducible example) that reproduces your problem.
– TrebledJ
Mar 27 at 3:18
@TrebledJxx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
– RaRaa
Mar 27 at 6:28
add a comment |
Unable to print tamil words correctly in matplotlib plot function.
Here is my code:
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
python matplotlib tamil
Unable to print tamil words correctly in matplotlib plot function.
Here is my code:
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
python matplotlib tamil
python matplotlib tamil
edited Mar 27 at 10:57
TrebledJ
5,4554 gold badges14 silver badges35 bronze badges
5,4554 gold badges14 silver badges35 bronze badges
asked Mar 26 at 13:31
RaRaaRaRaa
163 bronze badges
163 bronze badges
You need to use a font that support those characters.
– Goyo
Mar 26 at 13:39
1
Related – Non-ASCII Characters in Matplotlib
– TrebledJ
Mar 26 at 13:47
@TrebledJ I tried all the methods listed in the link. But could not be able to resolve the problem.
– RaRaa
Mar 27 at 3:11
@RaRaa Please show code (a minimal reproducible example) that reproduces your problem.
– TrebledJ
Mar 27 at 3:18
@TrebledJxx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
– RaRaa
Mar 27 at 6:28
add a comment |
You need to use a font that support those characters.
– Goyo
Mar 26 at 13:39
1
Related – Non-ASCII Characters in Matplotlib
– TrebledJ
Mar 26 at 13:47
@TrebledJ I tried all the methods listed in the link. But could not be able to resolve the problem.
– RaRaa
Mar 27 at 3:11
@RaRaa Please show code (a minimal reproducible example) that reproduces your problem.
– TrebledJ
Mar 27 at 3:18
@TrebledJxx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
– RaRaa
Mar 27 at 6:28
You need to use a font that support those characters.
– Goyo
Mar 26 at 13:39
You need to use a font that support those characters.
– Goyo
Mar 26 at 13:39
1
1
Related – Non-ASCII Characters in Matplotlib
– TrebledJ
Mar 26 at 13:47
Related – Non-ASCII Characters in Matplotlib
– TrebledJ
Mar 26 at 13:47
@TrebledJ I tried all the methods listed in the link. But could not be able to resolve the problem.
– RaRaa
Mar 27 at 3:11
@TrebledJ I tried all the methods listed in the link. But could not be able to resolve the problem.
– RaRaa
Mar 27 at 3:11
@RaRaa Please show code (a minimal reproducible example) that reproduces your problem.
– TrebledJ
Mar 27 at 3:18
@RaRaa Please show code (a minimal reproducible example) that reproduces your problem.
– TrebledJ
Mar 27 at 3:18
@TrebledJ
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
– RaRaa
Mar 27 at 6:28
@TrebledJ
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
– RaRaa
Mar 27 at 6:28
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55358429%2fhow-to-print-%25e0%25ae%25a8-%25e0%25af%2587-as-%25e0%25ae%25a8%25e0%25af%2587-in-matplotlib-plot-function-rendering-problem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55358429%2fhow-to-print-%25e0%25ae%25a8-%25e0%25af%2587-as-%25e0%25ae%25a8%25e0%25af%2587-in-matplotlib-plot-function-rendering-problem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You need to use a font that support those characters.
– Goyo
Mar 26 at 13:39
1
Related – Non-ASCII Characters in Matplotlib
– TrebledJ
Mar 26 at 13:47
@TrebledJ I tried all the methods listed in the link. But could not be able to resolve the problem.
– RaRaa
Mar 27 at 3:11
@RaRaa Please show code (a minimal reproducible example) that reproduces your problem.
– TrebledJ
Mar 27 at 3:18
@TrebledJ
xx=['என்று', 'தான்', 'ஒரு', 'இந்த']
yy=[1,3,2,5]
import matplotlib.pyplot as plt
plt.rc('font', family='Vijaya')
plt.plot(xx,yy, 'go-')
plt.xlabel("சொற்கள்")
plt.ylabel("எண்ணிக்கை")
– RaRaa
Mar 27 at 6:28