Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

miic.R 361 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. input_file <- read.csv(file = 'data/simulation_preprocessed.csv', sep=';')
  2. library(miic)
  3. input_file <- as.data.frame(sapply(input_file, as.factor))
  4. res <- miic(input_file, propagation = F)
  5. if (!dir.exists('output_dir')) {
  6. dir.create('output_dir')
  7. }
  8. write.csv2(res$all.edges.summary,
  9. 'output_dir/all.edges.summary.csv',
  10. row.names=FALSE)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...