{"id":233756,"date":"2020-12-29T16:57:11","date_gmt":"2020-12-29T08:57:11","guid":{"rendered":"http:\/\/4563.org\/?p=233756"},"modified":"2020-12-29T16:57:11","modified_gmt":"2020-12-29T08:57:11","slug":"%e5%a6%82%e4%bd%95%e5%88%a9%e7%94%a8-seaborn-%e7%bb%98%e5%88%b6-factorplot-%e5%9b%be","status":"publish","type":"post","link":"http:\/\/4563.org\/?p=233756","title":{"rendered":"\u5982\u4f55\u5229\u7528 seaborn \u7ed8\u5236 factorplot \u56fe?"},"content":{"rendered":"<div>\n<div>\n<div>\n<h1>                  \u5982\u4f55\u5229\u7528 seaborn \u7ed8\u5236 factorplot \u56fe?               <\/h1>\n<p> <\/p>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : fanqieipnet <\/span>  <span><i><\/i> 6<\/span> <\/div>\n<div> <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div isfirst=\"1\">                        \u5982\u4f55\u5229\u7528 seaborn \u7ed8\u5236 factorplot \u56fe?\u4eca\u5929\u756a\u8304\u52a0\u901f\u5c31\u6765\u89e3\u7b54\u4e00\u4e0b\u3002<\/p>\n<p>\u3000\u3000 seaborn \u662f\u57fa\u4e8e matplotlib \u5f00\u53d1\u7684\uff0c\u63d0\u4f9b\u66f4\u9ad8\u4e00\u7ea7\u7684\u63a5\u53e3\uff0c\u505a\u51fa\u7684\u53ef\u89c6\u5316\u56fe\u66f4\u52a0\u5177\u6709\u8868\u73b0\u529b\u3002<\/p>\n<p>\u3000\u3000\u4e0b\u9762\u4ecb\u7ecd seaborn \u5e93\u7684\u5165\u95e8\u4f7f\u7528\u65b9\u6cd5\uff0c\u9996\u5148\u5bfc\u5165\u5b83\u548c pyplot \u6a21\u5757\uff1a<\/p>\n<p>\u3000\u3000 import matplotlib.pyplot as plt<\/p>\n<p>\u3000\u3000 import seaborn as sns<\/p>\n<p>\u3000\u3000\u5b83\u91cc\u9762\u5185\u7f6e\u4e86\u4e00\u4e9b\u7ecf\u5178\u6570\u636e\u96c6\uff0c\u5982 tips, titanic, iris \u7b49\uff0c\u4e0b\u9762\u4f9d\u6b21\u5bfc\u5165\uff1a<\/p>\n<p>\u3000\u3000 tips = sns.load_dataset(&#8220;tips&#8221;)<\/p>\n<p>\u3000\u3000 titanic = sns.load_dataset(&#8220;titanic&#8221;)<\/p>\n<p>\u3000\u3000 iris = sns.load_dataset(&#8220;iris&#8221;)<\/p>\n<p>\u3000\u3000\u4ee5 titanic \u4e3a\u4f8b\uff0c\u7ed8\u5236 factorplot \u56fe\uff0c\u5c55\u793a sex(\u7537\u3001\u5973)\uff0c\u4e0d\u540c\u9636\u5c42(1,2,3)\u7684 survived \u6bd4\u7387\uff1a<\/p>\n<p>\u3000\u3000 sns.factorplot(x=&#8221;pclass&#8221;, y=&#8221;survived&#8221;, hue=&#8221;sex&#8221;,data=titanic)<\/p>\n<p>\u3000\u3000\u8fd8\u53ef\u4ee5\u5b9a\u5236 pointplot \u56fe\uff0c \u8c03\u6574 markers\uff0clinestyles \u7b49\u53c2\u6570\uff1a<\/p>\n<p>\u3000\u3000 sns.pointplot(x=&#8221;class&#8221;, y=&#8221;survived&#8221;, hue=&#8221;sex&#8221;, data=titanic,<\/p>\n<p>\u3000\u3000 palette={&#8220;male&#8221;:&#8221;g&#8221;,&#8221;female&#8221;:&#8221;m&#8221;},markers=[&#8220;^&#8221;,&#8221;o&#8221;],linestyles=[&#8220;-&#8220;,&#8221;&#8211;&#8220;])<\/p>\n<p>\u3000\u3000\u4e0d\u540c\u9636\u5c42\u4e0b\uff0c\u4e0d\u540c\u6027\u522b\u7684\u5b58\u6d3b\u6bd4\u7387 barplot \u56fe\uff1a<\/p>\n<p>\u3000\u3000 sns.barplot(x=&#8221;sex&#8221;,y=&#8221;survived&#8221;, hue=&#8221;class&#8221;, data=titanic)<\/p>\n<p>\u3000\u3000\u7edf\u8ba1 deck \u679a\u4e3e\u503c\u4e0d\u540c\u53d6\u503c\u7684\u51fa\u73b0\u9891\u6b21 countplot \u56fe\uff1a<\/p>\n<p>\u3000\u3000 sns.countplot(x=&#8221;deck&#8221;, data=titanic, palette=&#8221;Greens_d&#8221;)<\/p>\n<p>\u3000\u3000\u7bb1\u5f62\u56fe\u89c2\u5bdf\u6570\u636e\u5206\u5e03\u89c4\u5f8b\uff1a<\/p>\n<p>\u3000\u3000 sns.boxplot(x=&#8221;alive&#8221;, y=&#8221;age&#8221;,hue=&#8221;adult_male&#8221;,data=titanic)<\/p>\n<p>\u3000\u3000\u5173\u4e8e seaborn \u4f7f\u7528\uff0c\u6709\u4e00\u5f20 cheetsheet \u56fe\u3002      <\/p><\/div>\n<div> <b>\u5927\u4f6c\u6709\u8a71\u8aaa<\/b> (<span>0<\/span>)        <\/div>\n<div> <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<ul>\n<li>\n","protected":false},"excerpt":{"rendered":"<p>\u5982\u4f55\u5229\u7528 seaborn \u7ed8\u5236 f&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[],"tags":[],"_links":{"self":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/233756"}],"collection":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=233756"}],"version-history":[{"count":0,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/233756\/revisions"}],"wp:attachment":[{"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=233756"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=233756"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=233756"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}