ICode9

精准搜索请尝试: 精确搜索
  • 用SAS进行泊松,零膨胀泊松和有限混合Poisson模型分析2021-05-13 07:06:01

    原文链接:http://tecdat.cn/?p=6145     泊松模型 proc fmm data = tmp1 tech = trureg;   model majordrg = age acadmos minordrg logspend / dist = truncpoisson;   probmodel age acadmos minordrg logspend; /* Fit Statistics   -2 Log Likelihood  

  • python-禅2021-05-12 23:32:32

    The Zen of Python, by Tim Peters Beautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is better than complicated.Flat is better than nested.Sparse is better than dense.Readability counts.Special cases aren&#

  • 基于Vue的Better-Scroll组件封装2021-05-12 22:02:16

    基于Vue的Better-Scroll组件封装 介绍:在我们日常的移动端项目开发中,处理滚动列表是再常见不过的需求了,可以是竖向滚动的列表,也可以是横向的,用better-scroll可以帮助我们实现这个。 Scroll组件 Better-Scroll <template> <div class="wrapper" ref="wrapper"> <di

  • 我的 2020 年丨better and better2021-05-12 03:32:54

    转: 我的 2020 年丨better and better我的 2020 年有几个标签:「压力」「学习」「恋爱」「装修」。之前都没有做过总结自己的一年。也是因为近阶段有在写文章,想说也总结一下吧~ 我给自己概括了 3 个大标题,技术,生活,情感 ~技术2020 由于疫情的原因,春节推辞了几天才去上班。在家待久了

  • 把axios获取到的数据渲染到列表上,使用better-scroll实现列表左右滑动2021-05-11 12:34:30

    问题:axios数据请求完后,页面是有数据的,即页面看到有数据,但是better-scroll却无法滚动 原因:这是因为在数据更新前,better-scroll已经渲染完成了 解决方法:这是个异步问题,解决方法有很多,如果数据频繁变动,可以将better-scroll定义在mounted中,然后在watch监视器中监听数据的变化,检测到数

  • Mac手势神器BAB:Better And Better for Mac2021-05-03 10:36:02

    Better And Better 2 (越来越好) For Mac是一款集合众多优秀功能的Mac电脑应用程序。包含鼠标手势、键盘全局快捷键、触摸板手势、情景模式设置、秒控鼠标手势设置、第三方鼠标平滑滚动及手势设置、键盘快捷键配置、自定义脚本及AppleScript等功能。出色的创意与功能将无与伦比的

  • 《写给程序员的Python教程》阅读随笔---python禅学(Zen_of_python)2021-04-12 14:04:13

    Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to br

  • better-scroll2021-04-11 02:03:15

    背景: 在移动端触发事件一般不用click 因为有延迟,一般用的是 touchstart (但是有问题,点击滑动都会触发) 所以用tap(只点击生效,滑动不生效)  ,但是原生不支持  所以要用第三方的库来实现比如:zepto、vue-touch 、better-scroll(在iscroll之上再做了一层封装)、swiper   better-scroll

  • 实验22021-04-09 13:35:11

    x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) # {:-^40}控制输出数据格式: 宽度占40列,居中对 齐,空白处用-补齐 print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y2)) # 输出2 print('{:

  • 实验2 字符串和列表2021-04-09 02:02:01

    1. 实验任务1 x1,y1=1.2,3.57 x2,y2=2.26,8.7 print('{:-^40}'.format('输出1')) print('x1={},y1={}'.format(x1,y1)) print('x2={},y2={}'.format(x2,y2)) print('{:-^40}'.format('输出2')) print('x1={:.1f},y

  • 实验22021-04-08 23:35:04

    text.1---------------------------------------------------------------------------------------x1, y1=1.2, 3.57 x2, y2=2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1={}, y1 ={}'.format(x1, y1)) print('x2={}, y2 ={}&

  • 实验22021-04-07 23:33:31

    x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 # 输出1 print('{:-^40}'.format('输出1')) # 这样可以输出-分割线,输出1字符居中 print('x1={},y1={}'.format(x1,y1)) print('x2={},y2={}'.format(x2,y2)) # 我还是喜欢新版本的写法。 # 输出2 print('{:-^40}'.fo

  • 实验二2021-04-07 13:04:53

    x1,y1 = 1.2,3.57 x2,y2 = 2.26,8.7 print('{:-^40}'.format("输出1")) print('x1 = {},y1 = {}'.format(x1,y1)) print('x2 = {},y2 = {}'.format(x2,y2)) print("{:-^40}".format("输出2")) print("x1 = {:

  • 实验22021-04-05 22:03:23

    #task1 #使用字符串的format()方法,对输出数据进行格式化x1, y1 = 1.2, 3.57x2, y2 = 2.26, 8.7#输出1print('{:-^40}'.format('输出1'))print('x1 = {} , y1 = {}'.format(x1, y1))print('x2 = {} , y2 = {}'.format(x2, y2))#输出2print('{:-^40}'

  • 实验2 字符串和列表2021-04-05 18:01:09

    task1.py x1,y1 = 1.2,3.57 x2,y2 = 2.26,8.7 # 输出1 print('{:-^40}'.format('输入1')) print('x1={},y1={}'.format(x1,y1)) print('x2={},y2={}'.format(x2,y2)) # 输出2 print('{:-^40}'.format('输出2')) print

  • 实验22021-04-05 14:32:47

    任务1x1,y1 = 1.2,3.57x2,y2 = 2.26,8.7print('{:-^40}'.format('输出1'))print('x1 = {},y1 = {}'.format(x1,y1))print('x2 = {},y2 = {}'.format(x2,y2))print('{:-^40}'.format('输出2'))print('x1 = {:.1f},

  • 实验二2021-04-03 16:02:00

    x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y2)) print('{:-^40}'.format('输出2')) print('x

  • 实验22021-04-03 13:02:20

    #task1 #使用字符串的format()方法,对输出的数据项进行格式化 x1,y1 = 1.2,3.57 x2,y2 = 2.26,8.7 #输出1 print('{:-^40}'.format('输出1')) #{:-^40}控制输出数据格式:宽度占40列,居中对齐,空白处用-补齐 print('xi={},y1={}'.format(x1,y1)) print('x2={},y2={}'.format(x2,y

  • 实验二2021-04-03 12:32:09

    task1 x1,y1=1.2,3.57 x2,y2=2.26,8.7 print("{:-^40}".format("输出1")) print("x1={},y1={}".format(x1,y1)) print("x2={},y2={}".format(x2,y2)) print("{:-^40}".format("输出2")) print("x1={:.1f},y1=

  • 实验22021-04-03 11:05:01

    1. 实验任务1#task1.py #使用字符串的format()方法,对输出数据进行格式化 x1,y1=1.2, 3.57 x2,y2 = 2.26, 8.7   print("{:-^40}".format("输出1")) print("x1={},y1={}".format(x1,y1)) print("x2={},y2={}".format(x2,y2))   print("x1={:-^40}".

  • 实验2 字符串与列表2021-04-03 02:03:58

    #task1.py x1,y1=1.2,3.57 x2,y2=2.26,8.7 # print('{:-^40}'.format('输出1')) print('x1={},y1={}'.format(x1,y1)) print('x2={},y2={}'.format(x2,y2)) # print('{:-^40}'.format('输出2')) print('x1={:

  • 实验二2021-04-02 23:35:34

    #task1.pyx1,y1 = 1.2,3.57 x2,y2 = 2.26,8.7 print('{:-^40}'.format("输出1")) print('x1 = {},y1 = {}'.format(x1,y1)) print('x2 = {},y2 = {}'.format(x2,y2)) print("{:-^40}".format("输出2")) print(&quo

  • 实验22021-04-02 17:34:02

    task1 x1,y1=1.2, 3.57 x2,y2 = 2.26, 8.7 #输出1 print("{:-^40}".format("输出1")) print("x1={},y1={}".format(x1,y1)) print("x2={},y2={}".format(x2,y2))   #输出2 print("x1={:-^40}".format("输出2")) print(&q

  • 苹果Mac强大的批量重命名工具:A Better Finder Rename2021-03-30 17:56:01

    A Better Finder Rename 11 是macOS平台一款强大的批量重命名工具,它支持通过筛选/搜索快速过滤需要重命名的文件,然后通过强大的规则进行批量重命名,更重要的是可以进行排序。即时预览和更改突出显示即时预览功能可在用户键入时显示所有更改,从而轻松拨入正确的设置,并避免您犯下代价高

  • open2021-03-28 22:00:35

    we need to open ourselves as much as possible it is the only approach where we can enhance our abilities for a better life!

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有