事先声明:本文由初学者撰写,为一次探索的过程,可能有不严谨和准确的地方,望读者多多谅解并积极指正! 场景描述: 在一次前端开发过程中,我使用了一个网页模板,该模板包含一个主页和四个子页面,如下图: 具体的效果是,点击主页中的一个按钮会在弹框内显示子页面的内容,如下图: 具体的实现是在主页面中留出面板 ...
分类:
Web程序 时间:
2020-04-09 21:30:08
阅读次数:
135
组件 在系列之上,echarts 中各种内容,被抽象为“组件”。例如,echarts 中至少有这些组件:xAxis(直角坐标系 X 轴)、yAxis(直角坐标系 Y 轴)、grid(直角坐标系底板)、angleAxis(极坐标系角度轴)、radiusAxis(极坐标系半径轴)、polar(极坐标系底 ...
分类:
其他好文 时间:
2020-04-09 00:09:46
阅读次数:
186
1 import matplotlib.pyplot as plt 2 import numpy as np 3 x=np.linspace(-10,10,100) 4 y=np.linspace(-10,10,100) 5 #计算x和y的相交点a 6 X,Y=np.meshgrid(x,y) 7 ...
分类:
其他好文 时间:
2020-04-07 22:38:46
阅读次数:
93
最小路径和 LeetCode: "最小路径和" 题目描述: 给定一个包含非负整数的 m x n 网格,请找出一条从左上角到右下角的路径,使得路径上的数字总和为最小。 说明:每次只能向下或者向右移动一步。 示例: 思想: 动态规划,可以用原数组作为dp数组 代码: 三角形最小路径和 LeetCode: ...
分类:
编程语言 时间:
2020-04-06 14:06:18
阅读次数:
96
0. 前言 sklearn提供了sklearn.ensemble库,其中包括随机森林模型(分类)。但之前使用这个模型的时候,要么使用默认参数,要么将调参的工作丢给调参算法(grid search等)。今天想来深究一下到底是如何选择参数,如何进行调参。 学会调参是进行集成学习工作的前提。参数可分为两种 ...
分类:
其他好文 时间:
2020-04-06 09:42:16
阅读次数:
91
题目描述: # You live in the city of Cartesia where all roads are laid out in a perfect grid.# You arrived ten minutes too early to an appointment, so you ...
分类:
其他好文 时间:
2020-04-06 00:16:25
阅读次数:
94
PC端习惯了SQL Server Express、Access数据库的强大,安卓端再去用Microsoft Office、WPS,能让你怀疑人生。使用Airtable是个不错的方案,workspace-base-table,然后就是各种view,PC端有Grid、Form、Calendar、Gall ...
分类:
其他好文 时间:
2020-04-05 18:50:32
阅读次数:
76
class Solution: def maxValue(self, grid: List[List[int]]) -> int: for i in range(len(grid)): for j in range(len(grid[0])): if i == 0 and j == 0: conti ...
分类:
其他好文 时间:
2020-04-05 09:49:46
阅读次数:
44
题目传送门 题目描述 NEKO#ΦωΦ has just got a new maze game on her PC! The game's main puzzle is a maze, in the forms of a 2×n2×n rectangle grid. NEKO's task is ...
分类:
其他好文 时间:
2020-04-04 22:34:42
阅读次数:
81
adapter 用自己定义的 image 讲解 package com.zsch.forestinventory.adapter;import android.content.Context;import android.net.Uri;import android.support.v7.widge ...
分类:
移动开发 时间:
2020-04-03 13:44:40
阅读次数:
78