for(x in lowest_mean_gene){ low_gene_exp<- as.numeric(AH_data[x,]) hist(low_gene_exp, main=x,breaks=40) }
Concepts in Designing Database
A database design is the process of data organization based on a database model. The process deals with identifying what data should be stored in a database and how data elements relate to each other.
Entity Relationship Diagram
Complex real-world applications call for large volumes of data. Therefore, it is necessary to build a great database to store data safely and coherently. The ER data model aids in the process of database design. It helps outline the structure of an organization’s database by understanding the real-world interactions of objects related to the data. For example, if a school is tasked to store student information, then analyzing the correlation between the students, subjects, and teachers would help identify how the data needs to be stored.
![8TT
119
120
121
122
123
124
125
126
127
128 for(x in lowest_mean_gene){
Low_gene_exp<- as.numeric(AH_data[x,])
hist(low_gene_exp, main=x,breaks=40)
129
130
131 }
132
133
134
135
136
137
138
139](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fdb23fdff-6d05-4719-9c44-2c15efa878db%2Fd70191d9-18f1-46e0-9e6a-8bd2be097bc7%2F7et8b3v_processed.jpeg&w=3840&q=75)

Step by step
Solved in 2 steps









