首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏GEE数据专栏,GEE学习专栏,GEE错误集等专栏

    GEE(Google Earth Engine)——Filtered Composite

    这个例子主要是讲解一下用美国犹他州和科罗拉多州进行区域筛选并且求当地影像的最大、最小、中位数以及平均数等等的运算,一起来看代码:

    36010编辑于 2024-02-01
  • 来自专栏扎心了老铁

    Elasticsearch索引别名、Filtered索引别名、Template

    2、带filtered的索引别名 对于同一个索引,例如zoo,我们如何给不同人看到不同的数据,即,所谓的多租户。

    3.6K50发布于 2018-03-05
  • 来自专栏后端从入门到精通

    key&key_len&ref&filtered(4)—mysql执行计划(五十)

    | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered Filtered 我们前面说过连接查询的时候,有一个扇出值的概念,被驱动表查询的次数,取决于驱动表查询的数据有多少行, 1、如果是全表扫描的时候,那么计算驱动表扇出时,估计出满足搜索记录需要多少条。

    88031编辑于 2022-07-26
  • 来自专栏灰小猿技术社区

    【Maven打包报错解决方案】Using ‘UTF-8‘ encoding to copy filtered resources.

    resources (default-resources) @ springboot_01_helloworld --- [INFO] Using 'UTF-8' encoding to copy filtered [INFO] Using 'UTF-8' encoding to copy filtered properties files.

    3.2K20发布于 2021-09-23
  • 来自专栏Java后端技术

    解决Maven工程install时 Using platform encoding (UTF-8 actually) to copy filtered resources

      最近的项目在用maven 进行install的时候,发现老师在控制台输出警告:[WARNING] Using platform encoding (UTF-8 actually) to copy filtered

    76620发布于 2018-08-09
  • 来自专栏PHP专享栏

    PHP操作ES案例demo

    'userid', 'sort' => 'desc')) { $params = [ "query" => [ "filtered switch ($v['type']) { case 'between': $params['query']['filtered =': $params['query']['filtered']['filter']['bool']['must_not'][]['term'][$v[' =': $params['query']['filtered']['filter']['bool']['must_not'][]['term'][$v[' =': $params['query']['filtered']['filter']['bool']['must_not'][]['term'][$v['

    1.6K20发布于 2019-09-17
  • 来自专栏逸鹏说道

    ★Kali信息收集~★6.Dmitry:汇总收集

    filtered 6/tcp filtered 7/tcp filtered 8/tcp filtered 9/ filtered 13/tcp filtered 14/tcp filtered 15/tcp filtered filtered 20/tcp filtered 21/tcp filtered 22/tcp filtered filtered 27/tcp filtered 28/tcp filtered 29/tcp filtered filtered 34/tcp filtered 35/tcp filtered 36/tcp filtered

    97190发布于 2018-04-09
  • [python][pcl]python-pcl案例之簇提取(cluster extraction)

    ); # std::cout << "PointCloud after filtering has: " << cloud_filtered->points.size () << " data ->points.size (); # while (cloud_filtered->points.size () > 0.3 * nr_points) # { # ); tree = cloud_filtered.make_kdtree() # tree = cloud_filtered.make_kdtree_flann() # std [indice][0]) + ' ' + str(cloud_filtered[indice][1]) + ' ' + str(cloud_filtered[indice][2])) points[i][0] = cloud_filtered[indice][0] points[i][1] = cloud_filtered[indice][1]

    20600编辑于 2025-07-20
  • 来自专栏数据挖掘

    转录组—多分组的差异基因的聚类分析

    [exp$gene_id %in% geneid_union, ]dim(exp_filtered)#12760rownames(exp_filtered) <- exp_filtered$gene_id exp_filtered <- exp_filtered[, c("Model1", "Model2", "Model3", "EGA1", "EGA2", A", colnames(exp_filtered))colnames(exp_filtered) <- gsub("^EGB", "Model+Treat B", colnames(exp_filtered )exp_filtered = t(scale(t(exp_filtered)))#使用t函数进行转置,然后scale每一列标准化,再次进行转置。 exp_filtered[exp_filtered > 3] = 3exp_filtered[exp_filtered < -3] = -3annotation_colors <- list( group

    1.1K11编辑于 2024-10-18
  • [python][pcl]python-pcl案例之圆柱模型分割(Cylinder model segmentation)

    ); # std::cerr << "PointCloud after filtering has: " << cloud_filtered->points.size () << " data = passthrough.filter() print('PointCloud has: ' + str(cloud_filtered.size) + ' data points ') # Estimate point normals # ne.setSearchMethod (tree); # ne.setInputCloud (cloud_filtered () tree = cloud_filtered.make_kdtree() ne.set_SearchMethod(tree) ne.set_KSearch(50) # ); cloud_filtered2 = cloud_filtered.extract(inliers_plane, True) # extract_normals.setNegative

    25800编辑于 2025-07-20
  • 空转联合单细胞分析(七):10X Visium HD基于空间信息的BANKSY聚类

    /hd_obj_filtered.RData') RunBanksy: 使用RunBanksy函数在seurat object上运行Banksy。 hd_obj_filtered <- RunBanksy(hd_obj_filtered, lambda = 0.8, verbose = TRUE, assay = "Spatial.008um ) <- "BANKSY" hd_obj_filtered <- RunPCA(hd_obj_filtered, assay = "BANKSY", reduction.name = "pca.banksy ", features = rownames(hd_obj_filtered), npcs = 30) hd_obj_filtered <- FindNeighbors(hd_obj_filtered, reduction = "pca.banksy", dims = 1:30) hd_obj_filtered <- FindClusters(hd_obj_filtered, cluster.name

    38310编辑于 2025-12-18
  • 来自专栏pandas

    Pandas 数据筛选:条件过滤

    例如,筛选出年龄大于 30 的员工:filtered_df = df[df['Age'] > 30]print(filtered_df)输出:Name Age Department2 Charlie # 错误示例filtered_df = df[df['Age'] > 30 & df['Department'] == 'Sales']# 正确示例filtered_df = df[(df['Age'] # 错误示例filtered_df = df[df['Department'] == 30]# 正确示例filtered_df = df[df['Age'] == 30]3. # 错误示例filtered_df = df[df['Age'] > 30 and df['Department'] == 'Sales']# 正确示例filtered_df = df[(df['Age condition = "Age > 30 & Department == 'Sales'"filtered_df = df.query(condition)print(filtered_df)输出:

    3.2K20编辑于 2024-12-20
  • 来自专栏LoRexxar's Blog

    pwnhub_迷

    65521 closed ports PORT STATE SERVICE 22/tcp open ssh 80/tcp open http 135/tcp filtered msrpc 136/tcp filtered profile 137/tcp filtered netbios-ns 138/tcp filtered netbios-dgm 139/tcp filtered netbios-ssn 445/tcp filtered microsoft-ds 593/tcp filtered http-rpc-epmap 1234/tcp open hotline 4444/tcp filtered krb524 5554/tcp filtered sgi-esphttp 6176/tcp filtered unknown 9996/tcp filtered

    34110编辑于 2023-02-21
  • 来自专栏FPGA开源工作室

    Matlab图像处理之均值滤波

    figure, imshow(x); fR=xx(:,:,1);%R分量 fG=xx(:,:,2);%G分量 fB=xx(:,:,3);%B分量 f=1/9*ones(3);%低通滤波器,滤除高频噪声 filtered_fR =imfilter(fR,f); filtered_fG=imfilter(fG,f); filtered_fB=imfilter(fB,f); x_filtered=cat(3,filtered_fR ,filtered_fG,filtered_fB); figure, imshow(x_filtered); ?

    2.1K20发布于 2019-10-29
  • 来自专栏生信技能树

    王凌华生信大牛又一篇Nature空转新作发布!(文末附文章一作解读会议时间)

    _Pt-1C_filtered_feature_bc_matrix.h5 11.3 Mb GSM8452849_Pt-1C_spatial.tar.gz 15.0 Mb GSM8452850_Pt-2A_filtered_feature_bc_matrix.h5 _Pt-4A_filtered_feature_bc_matrix.h5 15.9 Mb GSM8452856_Pt-4A_spatial.tar.gz 16.8 Mb GSM8452857_Pt-4B_filtered_feature_bc_matrix.h5 _Pt-6A_filtered_feature_bc_matrix.h5 6.5 Mb GSM8452863_Pt-6A_spatial.tar.gz 11.0 Mb GSM8452864_Pt-6B_filtered_feature_bc_matrix.h5 _Pt-7D_filtered_feature_bc_matrix.h5 9.8 Mb GSM8452870_Pt-7D_spatial.tar.gz 14.2 Mb GSM8452871_Pt-8A_filtered_feature_bc_matrix.h5 13B_filtered_feature_bc_matrix.h5 8.7 Mb GSM8452892_Pt-13B_spatial.tar.gz 14.3 Mb GSM8452893_Pt-13C_filtered_feature_bc_matrix.h5

    58310编辑于 2025-05-04
  • 思路分享---关于WES联合单细胞RNA检测CNV的讨论

    genome_assembly="GRCh38", dir_path=dir_path, size=size, assay='WGS')Obj_filtered <- Segmentation_bulk(Obj_filtered=Obj_filtered, plot_seg = TRUE, hmm_states $mtx, barcodes=Input_filtered$barcodes, features=Input_filtered$features, bed=bed <- Segmentation_bulk(Obj_filtered=Obj_filtered, plot_seg = TRUE, hmm_states $mtx, barcodes=Input_filtered$barcodes, features=Input_filtered$features, bed=bed

    32700编辑于 2025-04-20
  • 脚本更新----visium数据的细胞类型距离分析

    filtered_props_1 <- data.frame(filtered_props_1[, c(topic1)]) rownames(filtered_props_1) <- rownames_holder filtered_props_2 <- data.frame(filtered_props_2[, c(topic2)]) rownames(filtered_props_2) <- rownames_holder rm(rownames_holder) colnames(filtered_props_2) <- c(topic2) print(filtered_props_2) # Create a dist_filtered <- dist_filtered[rownames(dist_filtered) %in% rownames(filtered_props_1), ] # Filter columns dist_filtered <- dist_filtered[, colnames(dist_filtered) %in% rownames(filtered_props_2)]

    34710编辑于 2025-01-13
  • 课后补充---10X HD数据结合图像识别获取单细胞级空间数据

    = gdf[intersects_bbox] else: filtered_gdf=gdf # Plot the filtered polygons on the second = merged_gdf[intersects_bbox] else: filtered_gdf = merged_gdf # Plot the filtered polygons = merged_gdf[intersects_bbox] else: filtered_gdf = merged_gdf # Plot the filtered polygons ['total_counts'] > 100# Apply both masks to the original AnnData to create a new filtered AnnData objectcount_area_filtered_adata = grouped_filtered_adata[mask_area & mask_count, :]# Calculate quality control metrics for the filtered

    59220编辑于 2024-08-16
  • 来自专栏图像处理与模式识别研究所

    自动选择噪声区域就能自动检测和去除周期性噪声的算法。

    = 2; H(255-x:259+x, 190-x:194+x) = 0; H(255-x:259+x, 320-x:324+x) = 0; H = ifftshift(H); filtered = filtered .* V; V1 = ones(size(f)); y1 = 2; V1(22-y1:229+y1, 255-y1:259+y1) = 0; V1(280-y1 :284+y1, 255-y1:259+y1) = 0; V1 = ifftshift(V1); filtered = filtered .* V1; V2 = ones = filtered .* V2; %Power Spectrum of filtered Mag2 = abs(filtered).^2; Mag2 = mat2gray(log( Mag2 + 1)); Mag2 = fftshift(Mag2); figure, imshow(Mag2), title('Power Spectrum'); f1 = ifft2(filtered

    39520编辑于 2022-05-28
  • 来自专栏机器学习/数据可视化

    plotly-express-7-Dash利用滑动条实现数据选择

    (): # continent 属于哪个洲 df_by_continent = filtered_df[filtered_df["continent"] == i] # 将已过滤年份的数据指定大洲再选择 = df[df.year == selected_year[0]] filtered_df1 = df[df.year == selected_year[1]] filtered_df = pd.concat([filtered_df0,filtered_df1]) # return px.scatter(filtered_df,x="gdpPercap",y="lifeExp (): # continent 属于哪个洲 df_by_continent = filtered_df[filtered_df["continent"] == i] # 将已过滤年份的数据指定大洲再选择 filtered_df = pd.concat([filtered_df0,filtered_df1]) return px.scatter(filtered_df,x="gdpPercap

    1.6K20发布于 2021-03-01
领券