Tag:R language
-
Cell’s favorite enrichment and analysis tools for differential genes go and KEGG
For transcriptome analysis, after the completion of differential gene screening, it is more than half of the success. Next, the downstream analysis can be carried out. First of all, the most common is the enrichment analysis of up and down regulated genes. We have published an R language version before: Cluster Profiler: a surprise work […]
-
Try exception in Python and trycatch exception resolution in R language
catalogue 1. Causes 2. Try / except in Python 1) Situation 1 2) Situation II 3) Situation 3 3. Trycatch in R 1) Situation 1 2) Situation II 3) Situation 3 supplement 1. Causes When we need to write a very, very long loop, usually if an error occurs in a loop, the loop after […]
-
Error in eval(predvars, data, env) : object ‘**‘ not found
Error in eval(predvars, data, env) : object ‘**’ not found catalogue Error in eval(predvars, data, env) : object ‘**’ not found #Question #Settle #Complete error #Question The name of the variable in the new data is different from that in the training model #create data df <- data.frame(x1=c(3, 4, 4, 5, 5, 6, 7, 8, […]
-
Windows – Intel (R) wireless-ac 9462 the device cannot be started (code 10) exclamation mark appears on the notebook network card and WiFi cannot be connected solution
preface An ASUS notebook has a network card that cannot be started, resulting inwifiUnable to connect to the problem. As shown in the figure below, the computer is suddenly disconnected,wifiIcon changed to earth, unable to search and connect: View device Right click firstThis computer → Administration, expand in sequence as shown in the figure below: […]
-
Enrichment analysis principle and clusterprofiler package for go and KEGG enrichment analysis are described in detail
Concept: Gene enrichment analysisIt refers to clustering analysis of genes according to genome annotation information (go, KEGG) for a given group of genes,That is, whether a given gene is a function in go (or a pathway in KEGG). The purpose of gene functional enrichment is to explain which functions are affected by a given gene […]
-
R language: go enrichment and KEGG enrichment, visualization tutorial, with code
R language: go enrichment and KEGG enrichment, visualization tutorial, with code Xiaobai is one. The blog is only used to record your learning process. I refer to a lot of codes. I feel that some codes are too complex, and some changes have been made according to your preference. 1. Document preparation Import the prepared […]
-
Pandas merge CSV files
Scenario: It is troublesome to deliver multiple CSV files in the project. Use pans Merge into a CSV file code: The code is as follows #-*-coding:utf-8-*- import pandas as pd import numpy as np #Read CSV file a = pd.read_table(“a.csv”,sep=”\s+”) b = pd.read_table(“b.csv”,sep=’\s+’) c = pd.read_table(‘c.csv’,sep=’\s+’) d = pd.read_table(“d.csv”,sep=’\s+’) e = pd.read_table(“e.csv”,sep=’\s+’) f = pd.read_table(“f.csv”,sep=’\s+’) […]
-
Advanced R — Data Structure
Advanced R by Hadley Wickham data structure Summary of this chapterbase RThe most important data structure. You’ve probably used them before, or some of them, but you probably never really thought about how they relate to each other. Here, we will not go further into the types of individual data structures. Instead, show how they […]
-
Text Mining and Topic Modeling in R Language
Welcome to Tencent Cloud + Community to get more Tencent Massive Technology Practice Dry Goods~ We encounter a variety of text data every day, but most of them are unstructured, not all of them are valuable.It is estimated that about 80% of global data is unstructured. This includes audio, video and text data. In this […]