Ich kann Dein Problem leider nicht nachvollziehen, denn es funktioniert genau so, wie man ich das erwarten würde, ohne jede Fehlermeldung:
    \documentclass{article}
    \usepackage{pgfplots}
    \usepgfplotslibrary{groupplots}
    \pgfplotsset{compat=newest}
    \begin{document}
    \begin{tikzpicture}[solid */.style={solid,mark=*,mark options={solid}}]
      \begin{groupplot}[group style={group size=2 by 4},% min. einen Platz mehr schaffen
        width=7cm,height=5cm]
        \nextgroupplot[xlabel = {Das ist die erste Achsex},ylabel = {Das ist die erste Achsey},title=Eins]
        \pgfplotsset{width=9cm,height=5cm}
        \addplot [red,solid *,smooth] coordinates {(2,6.45)(1,3.4)(3,4.8)(4,4.1)(5,2.4)};
        \nextgroupplot[xlabel = {Das ist die zweite Achsex},ylabel = {Das ist die zweite Achsey},title=zwei] 
        \addplot [green,solid *,smooth] coordinates {(1,66.4)(2,43.4)(3,4.3)(4,4.1)(5,9.4)};
        \nextgroupplot[xlabel = {Das ist die dritte Achsex},ylabel = {Das ist die dritte Achsey},title=drei]
       \pgfplotsset{width=9cm,height=5cm}
        \addplot [blue,solid *,smooth] coordinates {(1,66.4)(2,43.4)(2,4.8)(4,3.1)(1,9.4)};
        \nextgroupplot[xlabel = {Das ist die vierte Achsex},ylabel = {Das ist die vierte Achsey},title=vier] 
        \addplot [green,solid *] coordinates {(1,66.4)(2,43.4)(3,4.8)(4,4.1)(5,9.2)};
        \nextgroupplot[xlabel = {Das ist die fuenfte Achsex},ylabel = {Das ist die fuenfte Achsey},title=fuenf]
       \pgfplotsset{width=9cm,height=5cm}
        \addplot [pink,solid *] coordinates {(1,66.4)(2,43.4)(3,4.8)(4,4.1)(5,9.4)};
        \nextgroupplot[xlabel = {Das ist die sechste Achsex},ylabel = {Das ist die sechste Achsey},title=sechs]   
        \addplot [green,solid *] coordinates {(1,66.4)(2,43.2)(2,4.8)(4,4.1)(4,9.4)};
        \nextgroupplot[enlargelimits=0.2,colorbar sampled,colorbar style={samples=12},view={0}{90}  % view the plot from the top
        ]% Neue Gruppe mit den Einstellungen des Einzelplots
        \addplot3[
        scatter,mark=diamond*,only marks,
        point meta=\thisrow{count},
        z buffer=sort  
        ]
        table {
          mean    range   count 
          -220.8  228 50045
          -222    201.6   50045
          -220.2  198 200176
          -224.4  196.8   200176
          -220.8  192 200176
          -221.4  190.8   50044
          -226.2  176.4   200176
          -199.2  156 50044
          -201.6  153.6   50045
          -219    147.6   50044
          -252.6  133.2   50044
          -210    129.6   200176
          -250.8  127.2   50044
          -201    126 50044
          -229.2  124.8   50044
          -183    123.6   200176
          -168    122.4   200176
          -275.4  118.8   200176
          -172.2  114 50044
          -219    109.2   250220
          -217.8  104.4   50044
        };
      \end{groupplot}
    \end{tikzpicture}
    \end{document}
![alt text][1]
Du hättest also vielleicht besser zeigen sollen, was Du versucht hast, und angeben sollen, welche Fehlermeldung Du dabei bekommst.
  [1]: http://texwelt.de/wissen/upfiles/test2_17.png