{"id":2109,"date":"2023-07-23T15:56:13","date_gmt":"2023-07-23T15:56:13","guid":{"rendered":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/"},"modified":"2023-07-23T15:56:13","modified_gmt":"2023-07-23T15:56:13","slug":"matplotlib-rastgele-renk","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/","title":{"rendered":"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Matplotlib grafiklerinde rastgele renkler olu\u015fturmak i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1. \u00c7izgi grafi\u011fi i\u00e7in rastgele renk olu\u015fturun<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>col = <span style=\"color: #3366ff;\">(<\/span> <span style=\"color: #3366ff;\">np.random.random<\/span> (), <span style=\"color: #3366ff;\">np.random.random<\/span> (), <span style=\"color: #3366ff;\">np.random.random<\/span> <span style=\"color: #3366ff;\">(<\/span> <span style=\"color: #3366ff;\">)<\/span> )\n\nplt. <span style=\"color: #3366ff;\">plot<\/span> (x, y, c=col)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>2. Nokta bulutu i\u00e7in rastgele renkler olu\u015fturun<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>plt. <span style=\"color: #3366ff;\">scatter<\/span> (x, y, c=np. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">rand<\/span> (len(x), <span style=\"color: #008000;\">3<\/span> ))\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler bu s\u00f6zdiziminin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6stermektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: \u00c7izgi grafi\u011fi i\u00e7in rastgele bir renk olu\u015fturun<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, do\u011frusal bir \u00e7izimde tek bir \u00e7izgi i\u00e7in rastgele rengin nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6sterir:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n<span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#define data\n<\/span>x = [1, 2, 3, 4, 5]\ny = [7, 12, 15, 19, 25]\n\n<span style=\"color: #008080;\">#define random color\n<\/span>col = <span style=\"color: #3366ff;\">(<\/span> <span style=\"color: #3366ff;\">np.random.random<\/span> (), <span style=\"color: #3366ff;\">np.random.random<\/span> (), <span style=\"color: #3366ff;\">np.random.random<\/span> <span style=\"color: #3366ff;\">(<\/span> <span style=\"color: #3366ff;\">)<\/span> )\n\n<span style=\"color: #008080;\">#create line plot with random color\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (x, y, c=col) \n<\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19606 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aleatoire1.png\" alt=\"\" width=\"546\" height=\"357\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Ayn\u0131 kod par\u00e7as\u0131n\u0131 tekrar \u00e7al\u0131\u015ft\u0131r\u0131rsak, farkl\u0131 rastgele renkte bir \u00e7izgi yolu olu\u015fturulacakt\u0131r:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19607 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aleatoire2-1.png\" alt=\"\" width=\"544\" height=\"359\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <strong>\u00d6rnek 2: Bir nokta bulutu i\u00e7in rastgele renkler olu\u015fturun<\/strong><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, \u00e7izimdeki her nokta i\u00e7in rastgele renklere sahip bir da\u011f\u0131l\u0131m grafi\u011finin nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6sterir:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n<span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#define data<\/span>\nx = [1, 2, 3, 4, 5]\ny = [7, 12, 15, 19, 25]\n\n<span style=\"color: #008080;\">#create scatterplot with random colors for each point\n<\/span>plt. <span style=\"color: #3366ff;\">scatter<\/span> (x, y, c=np. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">rand<\/span> (len(x),3))\n<\/span><\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19608 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aleatoire3.png\" alt=\"\" width=\"532\" height=\"352\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Ayn\u0131 kod par\u00e7as\u0131n\u0131 tekrar \u00e7al\u0131\u015ft\u0131r\u0131rsak, her nokta i\u00e7in yeni rastgele renklere sahip bir da\u011f\u0131l\u0131m grafi\u011fi olu\u015fturulacakt\u0131r:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19609 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aleatoire4.png\" alt=\"\" width=\"537\" height=\"359\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not:<\/strong> Bu kodun \u00f6z\u00fcnde rastgele renkler (R, G, B) olu\u015fturmak i\u00e7in NumPy kullan\u0131l\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">NumPy <strong>random()<\/strong> i\u015flevinin tam a\u00e7\u0131klamas\u0131 i\u00e7in <a href=\"https:\/\/numpy.org\/doc\/stable\/reference\/random\/generated\/numpy.random.random.html\" target=\"_blank\" rel=\"noopener\">\u00e7evrimi\u00e7i belgelere<\/a> bak\u0131n.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimler Matplotlib&#8217;de di\u011fer genel \u00e7izim i\u015flevlerinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fini a\u00e7\u0131klamaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/matplotlib-arka-plan-rengi\/\" target=\"_blank\" rel=\"noopener\">Matplotlib&#8217;de arka plan rengi nas\u0131l de\u011fi\u015ftirilir?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/matplotlib-renk-degerine-gore-dagilim-grafigi\/\" target=\"_blank\" rel=\"noopener\">Matplotlib&#8217;de bir da\u011f\u0131l\u0131m grafi\u011fini de\u011fere g\u00f6re renklendirme<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Matplotlib grafiklerinde rastgele renkler olu\u015fturmak i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz: 1. \u00c7izgi grafi\u011fi i\u00e7in rastgele renk olu\u015fturun col = ( np.random.random (), np.random.random (), np.random.random ( ) ) plt. plot (x, y, c=col) 2. Nokta bulutu i\u00e7in rastgele renkler olu\u015fturun plt. scatter (x, y, c=np. random . rand (len(x), 3 )) A\u015fa\u011f\u0131daki \u00f6rnekler bu s\u00f6zdiziminin [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-2109","post","type-post","status-publish","format-standard","hentry","category-rehber"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde Matplotlib grafiklerinde rastgele renklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde Matplotlib grafiklerinde rastgele renklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-23T15:56:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aleatoire1.png\" \/>\n<meta name=\"author\" content=\"Dr.benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr.benjamin anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/\",\"url\":\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/\",\"name\":\"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-23T15:56:13+00:00\",\"dateModified\":\"2023-07-23T15:56:13+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde Matplotlib grafiklerinde rastgele renklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/tr\/#website\",\"url\":\"https:\/\/statorials.org\/tr\/\",\"name\":\"Statorials\",\"description\":\"\u0130statistik okuryazarl\u0131\u011f\u0131 rehberiniz!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/tr\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"tr\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Merhaba, ben Benjamin, emekli bir istatistik profes\u00f6r\u00fc ve Statorials \u00f6\u011fretmenine d\u00f6n\u00fc\u015ft\u00fcm. \u0130statistik alan\u0131ndaki kapsaml\u0131 deneyimim ve uzmanl\u0131\u011f\u0131mla, \u00f6\u011frencilerimi Statorials arac\u0131l\u0131\u011f\u0131yla g\u00fc\u00e7lendirmek i\u00e7in bilgilerimi payla\u015fmaya can at\u0131yorum. Daha fazlas\u0131n\u0131 bil\",\"sameAs\":[\"https:\/\/statorials.org\/tr\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur - Statorials","description":"Bu e\u011fitimde Matplotlib grafiklerinde rastgele renklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/","og_locale":"tr_TR","og_type":"article","og_title":"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur - Statorials","og_description":"Bu e\u011fitimde Matplotlib grafiklerinde rastgele renklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/","og_site_name":"Statorials","article_published_time":"2023-07-23T15:56:13+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aleatoire1.png"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"2 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/","url":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/","name":"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-23T15:56:13+00:00","dateModified":"2023-07-23T15:56:13+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde Matplotlib grafiklerinde rastgele renklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/matplotlib-rastgele-renk\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Matplotlib grafiklerinde rastgele renkler nas\u0131l olu\u015fturulur?"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/tr\/#website","url":"https:\/\/statorials.org\/tr\/","name":"Statorials","description":"\u0130statistik okuryazarl\u0131\u011f\u0131 rehberiniz!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/tr\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"tr"},{"@type":"Person","@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Merhaba, ben Benjamin, emekli bir istatistik profes\u00f6r\u00fc ve Statorials \u00f6\u011fretmenine d\u00f6n\u00fc\u015ft\u00fcm. \u0130statistik alan\u0131ndaki kapsaml\u0131 deneyimim ve uzmanl\u0131\u011f\u0131mla, \u00f6\u011frencilerimi Statorials arac\u0131l\u0131\u011f\u0131yla g\u00fc\u00e7lendirmek i\u00e7in bilgilerimi payla\u015fmaya can at\u0131yorum. Daha fazlas\u0131n\u0131 bil","sameAs":["https:\/\/statorials.org\/tr"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2109","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/comments?post=2109"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2109\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2109"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2109"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2109"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}