将表单重置为原始值的glyphicons图标是什么?我查看了备忘单,Bootstrap Glyphicons " glyphicon-refresh"图标是我看到的最接近的图标。
答案 0 :(得分:1)
您可以搜索图标here:http://glyphicons.com/
这可能是您正在寻找的内容:for depthvalues in split_depth.values(): # only takes the values (separated lists), removes keys
# takes into account the number of yows
count+=1
depthlst = depthvalues
depthfirst = depthlst[0] #find my first depth or deepest depth
depthlast = depthlst[-1] # find my last depth, or shallowest
depthfirst_index = depth.index(depthfirst) #finds the index of my deepest depth for this segment in the filtered lists
depthlast_index = depth.index(depthlast) #finds the index of my shallowest depth for this segment in the filtered lists
irradlst = irrad[depthfirst_index:depthlast_index+1]
irrad_first = irradlst[0] #finds the corresponding irradiance
irrad_last = irradlst[-1]
irrad_last = float(irrad_last)
irradlst = np.array(irradlst).astype(np.float)
depthlst = np.array(depthlst).astype(np.float)
attencoef = [np.log(i/irrad_last) for i in irradlst]
#whenever I use this line of code(below) I get a bunch of errors
regress = linregress(attencoef,depthlst)
答案 1 :(得分:0)
似乎并不是一个人。我自己也在寻找同样的事情。
答案 2 :(得分:0)
我使用的是glyphicon-remove
,因为没有特定的。{1}。
<div class="input-group-btn">
<button class="btn btn-default" type="reset"><i class="glyphicon glyphicon-remove"></i></button>
</div>