三个CSV文件
2023-05-23 19:08:58 165KB CSV
1
机器学习 – 机器学习项目案例 案例1:利用岭回归研究波士顿放假 读取数据 from sklearn.datasets import load_boston boston = load_boston() print('feature_names:', boston.feature_names) print('data (shape) :', boston.data.shape) 线性回归模型 from sklearn.linear_model import LinearRegression lin_reg = LinearRegression() lin_reg.fit(boston.da
2023-05-19 15:41:59 302KB data test 学习
1
针对Java语言,结合实例介绍测试驱动开发的方法。英文原版。 Test-driven development (TDD) is a development approach that relies on a test-first procedure that emphasises writing a test before writing the necessary code, and then refactoring the code to optimize it. The value of performing TDD with Java, one of the most established programming languages, is to improve the productivity of programmers, the maintainability and performance of code, and develop a deeper understanding of the language and how to employ it effectively. Starting with the basics of TDD and reasons why its adoption is beneficial, this book will take you from the first steps of TDD with Java until you are confident enough to embrace the practice in your day-to-day routine. You'll be guided through setting up tools, frameworks, and the environment you need, and will dive right in to hands-on exercises with the goal of mastering one practice, tool, or framework at a time. You'll learn about the Red-Green-Refactor procedure, how to write unit tests, and how to use them as executable documentation. With this book you'll also discover how to design simple and easily maintainable code, work with mocks, utilise behaviour-driven development, refactor old legacy code, and release a half-finished feature to production with feature toggles. You will finish this book with a deep understanding of the test-driven development methodology and the confidence to apply it to application programming with Java.
2023-05-15 22:54:03 3.66MB Java TDD
1
HL7 Test Harness系统是HL7 v3消息一致性测试应用程序,还提供了模拟客户端和/或服务器系统的消息处理动作的功能。 该应用程序提供消息工作流程,格式和内容测试。
2023-05-15 13:58:38 8.08MB 开源软件
1
第6章 运动模式 108 © 2015 固高科技 版权所有 &segment, // 读取当前已经完成的插补段数 0); // 查询坐标系的FIFO0缓存区 // 坐标系在运动, 查询到的run的值为 }while(run == 1); …… …… …… (3) 圆弧插补 GTC 运动控制器的插补模式支持在 XY 平面、YZ 平面和 ZX 平面的圆弧插补。其中圆弧插补的 旋转方向按照右手螺旋定则定义为:从坐标平面的“上方”(即垂直于坐标平面的第三个轴的正方向) 看,来确定逆时针方向和顺时针方向。可以这样简单记忆:将右手拇指前伸,其余四指握拳,拇指 指向第三个轴的正方向,其余四指的方向即为逆时针方向。映射坐标系为二维坐标系(X-Y)时,XOY 坐标平面内的圆弧插补逆时针方向同样定义,如图 6-26 示。 图 6-26 圆弧插补逆时针方向 圆弧插补有两种描述方法:半径描述方法和圆心坐标描述方法,用户可以根据加工数据选择合 适的描述方法来编程。所使用的描述方法遵循 G 代码的编程标准。 a) 半径描述方法 调用指令 GT_ArcXYR、GT_ArcYZR、GT_ArcZXR 是使用半径描述方法对圆弧进行描述。使 用半径描述方法,用户需要输入圆弧终点坐标、圆弧半径、圆弧的旋转方向、速度和加速度等。其 中参数半径可为正值,也可为负值,其绝对值为圆弧的半径,正值表示圆弧的旋转角度≤180°,负值 表示圆弧的旋转角度>180°,如图 6-27 所示,半径描述方法无法描述 360°的整圆。 Radius<0 Radius>0 起点 终点 图 6-27 半径取正值/负值圆弧插补示意图
2023-05-11 17:41:19 4.45MB 固高 编程手册 运动控制器
1
java餐桌点餐系统源码 test Android 课程源码 移动点餐系统开发日志 3月11号 1、搭建用户界面Activity_main.xml 2、搭建用户注册界面Activity_register.xml 3月16日 1、编写实体类模型:菜品类Dish、菜单类Dishes、订单类Order、订单明细类OrderItem、用户类、购物车类ShoppingCart 3月18日 1、继续编写购物车类ShoppingCart 2、设计编写一个在APP运行期间能够使用用户购物车等对象的一个Application的类,共享数据,缓存数据,数据传递的作用 3月23日 1.主界面的操作: a.用户登录及注册。用户点击登录按钮,弹出登录及注册的对话框进行登录或注册操作。只有登录用户才可以进行“个人中心”、“点餐”、“外卖”、“我的订单”的操作,非登录用户系统会提示进行登录才能进行下一步操作。用户登录后,登录按钮切换成注销按钮 b、个人信息的查询和修改:登陆用户单机”个人中心“按钮,切换到“用户信息”页面进行个人信息的查看和修改 c、点餐:用户单击”点餐“按钮后,会弹出一个对话框,让用户输入餐桌号或
2023-05-06 14:19:19 20.72MB 系统开源
1
IBM Rational Software Architect 8.5 破解jar包,和IBM Rational Software Architect 8.0.4的一样。直接覆盖D:\IBM\IBMIMShared\plugins下的对应jar包则可:)亲测可用!!!
2023-05-06 10:48:21 25KB IBM Rational 8.5
1
该代码执行 Spearman 的 rho 测试。 它针对趋势的替代测试向量 V 中趋势缺失的零假设。 测试结果返回 Td = 1 表示正趋势 Td = -1 表示负趋势,即在 alpha 显着性水平拒绝原假设。 Td = 0 表示未能在 alpha 显着性水平上拒绝原假设。
2023-05-03 21:15:10 2KB matlab
1
Open Broadcaster Software obs 官网上下载了很多次才下载下来,放在csdn上便于大家下载,节约大家的时间
2023-04-29 21:05:45 7.31MB Open Broadcaster Software obs
1
自动化测试最佳实践 来自全球的经典自动化测试案例解析 sample
2023-04-24 23:32:00 6.82MB test
1