07 2020 档案

摘要:http://bl.ocks.org/enjalot/1829187 index.html# <html> <meta charset='utf-8' /> <head> </head> <body> <svg> <text id='text_node' y="20px" text-anchor=" 阅读全文
posted @ 2020-07-29 08:36 功夫 熊猫 阅读(561) 评论(0) 推荐(0) 编辑
摘要:Horizontal Bar chart d3.v4 https://bl.ocks.org/caravinden/eb0e5a2b38c8815919290fa838c6b63b index.html# <!DOCTYPE html> <meta charset="utf-8"> <style> 阅读全文
posted @ 2020-07-23 15:52 功夫 熊猫 阅读(247) 评论(0) 推荐(0) 编辑
摘要:https://bl.ocks.org/d3noob/629790fc15cc1afba0253f29a4d246e7 This is a simple line graph written to illustrate a method of changing the colour of an ax 阅读全文
posted @ 2020-07-23 15:51 功夫 熊猫 阅读(512) 评论(0) 推荐(0) 编辑
摘要:https://stackoverflow.com/questions/42509902/ssl-certificate-verify-failed-using-pip-to-install-packages/49910594 https://stackoverflow.com/questions/ 阅读全文
posted @ 2020-07-21 13:38 功夫 熊猫 阅读(772) 评论(0) 推荐(0) 编辑
摘要:Getting The following errors when installing boto3 https://acloud.guru/forums/python-for-beginners/discussion/-LNSCdTnqWyP24P-FQxH/Getting%20The%20fol 阅读全文
posted @ 2020-07-21 13:34 功夫 熊猫 阅读(299) 评论(0) 推荐(0) 编辑
摘要:https://www.d3indepth.com/scales/ D3 in Depth Home About Introduction to D3 Selections Joins Enter/exit Scales Shapes Layouts Force Geographic Request 阅读全文
posted @ 2020-07-18 03:26 功夫 熊猫 阅读(316) 评论(0) 推荐(0) 编辑
摘要:https://medium.com/@kj_schmidt/making-a-simple-scatter-plot-with-d3js-58cc894d7c97 Making a simple scatter plot with d3.js KJ Schmidt Follow Feb 20, 2 阅读全文
posted @ 2020-07-18 03:24 功夫 熊猫 阅读(325) 评论(0) 推荐(0) 编辑
摘要:https://www.d3-graph-gallery.com/graph/scatter_basic.html <!-- Code from d3-graph-gallery.com --><!DOCTYPE html><meta charset="utf-8"> <!-- Load d3.js 阅读全文
posted @ 2020-07-18 03:07 功夫 熊猫 阅读(192) 评论(0) 推荐(0) 编辑
摘要:D3 Tick Format https://bl.ocks.org/mbostock/9764126 Open By passing a format specifier to scale.tickFormat, you create a number format with precision 阅读全文
posted @ 2020-07-18 03:05 功夫 熊猫 阅读(817) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/kidsitcn/p/7182274.html d3js scales深入理解 比例尺函数是这样的javascript函数: 接收通常是数字,日期,类别等data输入并且: 返回一个代表可视化元素的值,比如坐标,颜色,长度或者半径等 比例尺通常用于变换 阅读全文
posted @ 2020-07-16 13:43 功夫 熊猫 阅读(526) 评论(0) 推荐(0) 编辑
摘要:For windows users with Chrome Versions 60.0.3112.78 (the day the solution was tested and worked) and at least until today 19.01.2019 (ver. 71.0.3578.9 阅读全文
posted @ 2020-07-16 10:39 功夫 熊猫 阅读(311) 评论(0) 推荐(0) 编辑
摘要:D3中常用的比例尺 https://segmentfault.com/a/1190000011006780 D3中有个重要的概念就是比例尺。比例尺就是把一组输入域映射到输出域的函数。映射就是两个数据集之间元素相互对应的关系。比如输入是1,输出是100,输入是5,输出是10000,那么这其中的映射关系 阅读全文
posted @ 2020-07-14 08:40 功夫 熊猫 阅读(1032) 评论(0) 推荐(0) 编辑
摘要:https://www.tutorialspoint.com/degree-of-vertex-of-a-graph It is the number of vertices adjacent to a vertex V. Notation − deg(V). In a simple graph w 阅读全文
posted @ 2020-07-06 09:50 功夫 熊猫 阅读(274) 评论(0) 推荐(0) 编辑
摘要:作者:无糖梅花糕May链接:https://www.zhihu.com/question/48975891/answer/1053252333来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 这里给大家只讲好的,不讲一般的,更不讲水的。毕竟英雄还问出路。 就CS而言,美 阅读全文
posted @ 2020-07-05 15:22 功夫 熊猫 阅读(847) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/%E8%B4%B9%E8%8C%A8%E6%B3%95%E5%88%99/8761732?fr=aladdin 费茨法则是人机交互领域里一个非常重要的法则,在10年来得到了广泛的应用。Fitts法则最基本的观点就是任何时候,当一个人用鼠标来移 阅读全文
posted @ 2020-07-04 13:41 功夫 熊猫 阅读(726) 评论(0) 推荐(0) 编辑
摘要:从python2.2开始,便有两种除法运算符:"/"、"//"。两者最大区别在: python2.2前的版本和python2.2以后3.0以前的版本的默认情况下,"/"所做的除法是以一种两个数或者多个数出现一个浮点数结果就以浮点数的形式表示,即float除法 "//"所做的除法则不相同,"//"不管 阅读全文
posted @ 2020-07-04 13:40 功夫 熊猫 阅读(4562) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示