Graphics, Figures & Tablesformatting mind mapping with more primary sources

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
huu2018
Posts: 4
Joined: Fri Dec 14, 2018 8:48 pm

formatting mind mapping with more primary sources

Post by huu2018 »

Hello all,
Good day.
Please, I have difficult formatting a mind map that has more primary and secondary sources.
Here how I did:
Step 1: 360 degree/ number of child to get the angle.
Step 2: Just estimated the degree for the secondary sources.

Here is the code:

Code: Select all

\begin{tikzpicture}
  \path[mindmap,grow cyclic, every node/.style=concept, concept color=black,text=white, align=flush center,
   level 1 /.append style={level distance = 10cm},
   level 2 /.append style={level distance = 15cm},]
    node[concept]{Data }
     [clockwise from=0]
      child[concept color=green!50!black]{
      node[concept]{Renaming Data Variable}
      [clockwise from=36]
       child{node[concept]{Get the data}}
       child{node[concept]{Names function}}
       child{node[concept]{Renaming Columns and Rows}}
       }
      child[concept color=blue] {
      node[concept] {Converting data types}
      [clockwise from = -36]
      child { node[concept] {class function} }
      child { node[concept] {Converting date variable} }
      child { node[concept] {Str to examine data set} }
    }
     child[concept color=red]{
        node[concept]{Working with date format}
          [clockwise from = -72]
           child{node[concept]{Date difference}}
           child{node[concept]{Lubricate package}}
           child{node[concept]{Converting data to POSIX format and calculate age}}
     }
        child[concept color=orange]{
        node[concept]{Adding new records}
            [clockwise from = -108]
           child{node[concept]{Using rbind}}
           child{node[concept]{Reassigning}}
           child{node[concept]{Adding and age attribute}}
        }   
        child[concept color=purple]{
        node[concept]{Filtering Data}
            [clockwise from = -144]
           child{node[concept]{Subsetting specific rows and column}}
           child{node[concept]{Excluding columns}}
           child{node[concept]{Using substr functions}}
        }
         child[concept color=green]{
          node[concept]{Dropping Data}
            [clockwise from = -180]
           child{node[concept]{Excluding lastname}}
           child{node[concept]{Dropping rows}}
           child{node[concept]{Using Functions}}
         }
          child[concept color=green]{
          node[concept]{Merging and Sorting data}
            [clockwise from = -216]
           child{node[concept]{Excluding lastname}}
           child{node[concept]{Dropping rows}}
           child{node[concept]{Using Functions}}
          }
          child[concept color = pink]{
          node[concept]{Reshaping Data}
            [clockwise from = -252]
           child{node[concept]{Excluding lastname}}
           child{node[concept]{Dropping rows}}
           child{node[concept]{Using Functions}}
          }
           child[concept color=green]{
           node[concept]{Detecting missing data}
             [clockwise from = -288]
           child{node[concept]{Excluding lastname}}
           child{node[concept]{Dropping rows}}
           child{node[concept]{Using Functions}}
           }
            child[concept color=green]{
          node[concept]{Imputing missing data}
            [clockwise from = -324]
           child{node[concept]{Subset data}}
           child{node[concept]{Calculating  mean salary and Impute}}
           child{node[concept]{Using MICE package}}
          };
\end{tikzpicture}
Problem:
1. The spacing between child node- which one to change ?. angle or level distance?.
2. How to make it look better?.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

huu2018
Posts: 4
Joined: Fri Dec 14, 2018 8:48 pm

formatting mind mapping with more primary sources

Post by huu2018 »

Hello friends,

Anyone there with help.?

Really appreciate.

Thanks
huu2018
Posts: 4
Joined: Fri Dec 14, 2018 8:48 pm

formatting mind mapping with more primary sources

Post by huu2018 »

Hello tefan Kottwitz

Please, can you give, just a hint, how to improve that mind map?

Thank you in advance
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

formatting mind mapping with more primary sources

Post by Stefan Kottwitz »

You may need a lot of manual adjustments, such as on tikz.de or texample.net.

The information just looks too much for me, hardy readable in a huge complicated mind map. Perhaps it can be done in several mind maps.

Stefan
LaTeX.org admin
huu2018
Posts: 4
Joined: Fri Dec 14, 2018 8:48 pm

formatting mind mapping with more primary sources

Post by huu2018 »

Hello stefan,
Thank you a lot for your support as always.
regards
TrentHen
Posts: 1
Joined: Thu Jan 10, 2019 11:57 am

formatting mind mapping with more primary sources

Post by TrentHen »

Stefan Kottwitz wrote:
The information just looks too much for me, hardy readable in a huge complicated mind map. Perhaps it can be done in several mind maps.

Stefan
Hi Stefan, do you recommend breaking the big mind maps into smaller maps in general too or just in this case?
Post Reply