1

以下は、正常に機能している2つのHiveSQLクエリを実行しているBashシェルスクリプトです。そして、私はError PercentageこのBashシェルスクリプトで計算しています。

#!/bin/bash

QUERY1=`hive -e "
set mapred.job.queue.name=hdmi-technology;
SELECT SUM(total_items_purchased), SUM(total_items_missingormismatch) from lip_data_quality where dt='$DATE_YEST_FORMAT2';"`

QUERY2=`hive -e "
set mapred.job.queue.name=hdmi-technology;
SELECT 100 * SUM(total_items_missingormismatch*1.0) / SUM(total_items_purchased) FROM lip_data_quality where dt='$DATE_YEST_FORMAT2';"`


mailx -s "LIP Data Quality Report for $DATE_YEST_FORMAT1" -r rj@host.com rj@host.com  <<EOF
Data Successfully loaded into LIP_DATA_QUALITY table

Total Items Purchased: `echo $QUERY1 | awk '{print $1}'`

Total Items MissingorMismatch: `echo $QUERY1 | awk '{print $2}'`

Error Percentage: $QUERY2
EOF

問題文:-

Error Percentageで番号を取得し$QUERY2ます。Error PercentageBashシェルスクリプトをNo Error Percentage使用して、$QUERY2下のグラフのように表示できる単純な円グラフを作成する必要があります。

ここに画像の説明を入力してください

私は走っていSunOSます。これはBashシェルスクリプトで実行できますか?どんな考えでもありがたいです。

アップデート:-

以下は、私が使用している、を使用して作成したシェルスクリプトですvi editor

 1  #! /bin/bash
 2
 3  TEMP=$(mktemp -t chart)
 4  QUERY1=36
 5  QUERY2=64
 6  cat > $TEMP <<EOF
 7      <html>
 8        <head>
 9          <!--Load the AJAX API-->
10          <script type="text/javascript" src="https://www.google.com/jsapi"></script>
11          <script type="text/javascript">
12
13            // Load the Visualization API and the piechart package.
14            google.load('visualization', '1.0', {'packages':['corechart']});
15
16            // Set a callback to run when the Google Visualization API is loaded.
17            google.setOnLoadCallback(drawChart);
18
19            // Callback that creates and populates a data table,
20            // instantiates the pie chart, passes in the data and
21            // draws it.
22            function drawChart() {
23
24              // Create the data table.
25              var data = new google.visualization.DataTable();
26              data.addColumn('string', 'Title');
27              data.addColumn('number', 'Value');
28              data.addRows([
29                ['Error Percentage', $QUERY1],
30                ['No Error Percentage', $QUERY2]
31              ]);
32
33              // Set chart options
34              var options = {'title':'Errors',
35                             'width':400,
36                             'height':300};
37
38              // Instantiate and draw our chart, passing in some options.
39              var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
40              chart.draw(data, options);
41            }
42          </script>
43        </head>
44
45        <body>
46          <!--Div that will hold the pie chart-->
47          <div id="chart_div"></div>
48        </body>
49      </html>
50      EOF
51
52      # open browser
53      case $(uname) in
54         Darwin)
55            open -a /Applications/Google\ Chrome.app $TEMP
56            ;;
57
58         Linux|SunOS)
59            firefox $TEMP
60            ;;
61       esac
62

上記のシェルスクリプトを実行した後に発生したエラーsh -x chart.sh-

bash-3.00$ sh -x chart.sh
chart.sh: syntax error at line 3: `TEMP=$' unexpected

どんな考えでもありがたいです。

別の更新:-

以下の提案の後、私がこのようなことを試みたとき-私は別のエラーが発生しました。

bash-3.00$ bash -x chart.sh
++ mktemp -t chart
mktemp: failed to create file: /tmp/chart
+ TEMP=
+ QUERY1=36
+ QUERY2=64
+ cat
chart.sh: line 6: $TEMP: ambiguous redirect

別の更新:私が推測するいくつかの進歩を遂げました。出力ファイルがどこに行くのかわからない?または、ブラウザで開きますか?

bash-3.00$ bash -x chart.sh
++ mktemp -t chart
+ TEMP=/tmp/chart
+ QUERY1=36
+ QUERY2=64
+ cat
++ uname
4

3 に答える 3

3

Google Chartを作成する非常に簡単な方法:

#! /bin/bash

TEMP=$(mktemp -t chart.XXXXX)
QUERY1=36
QUERY2=64
cat > $TEMP <<EOF
<html>
  <head>
    <!--Load the AJAX API-->
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">

      // Load the Visualization API and the piechart package.
      google.load('visualization', '1.0', {'packages':['corechart']});

      // Set a callback to run when the Google Visualization API is loaded.
      google.setOnLoadCallback(drawChart);

      // Callback that creates and populates a data table,
      // instantiates the pie chart, passes in the data and
      // draws it.
      function drawChart() {

        // Create the data table.
        var data = new google.visualization.DataTable();
        data.addColumn('string', 'Title');
        data.addColumn('number', 'Value');
        data.addRows([
          ['Error Percentage', $QUERY1],
          ['No Error Percentage', $QUERY2]
        ]);

        // Set chart options
        var options = {'title':'Errors',
                       'width':400,
                       'height':300};

        // Instantiate and draw our chart, passing in some options.
        var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
        chart.draw(data, options);
      }
    </script>
  </head>

  <body>
    <!--Div that will hold the pie chart-->
    <div id="chart_div"></div>
  </body>
</html>
EOF

# open browser
case $(uname) in
   Darwin)
      open -a /Applications/Google\ Chrome.app $TEMP
      ;;

   Linux|SunOS)
      firefox $TEMP
      ;;
 esac

として保存した場合は、次のchart.shように実行します

$ bash -x chart.sh

また

$ chmod +x chart.sh
$ ./chart.sh

あなたに何かを与える

ここに画像の説明を入力

bash必要なのはインターネット接続だけであり、何もインストールする必要がないことに注意してください。

mktempSolaris で利用できるはずです ( http://docs.oracle.com/cd/E23824_01/html/821-1461/mktemp-1.html )。持っていない場合は、TEMP を HTML 出力にしたいファイルに設定してください。

于 2012-08-12T20:27:46.403 に答える
1

シェルのみで円グラフを作成する簡単な方法は、svg 画像を生成することです。

他の画像タイプを生成するための簡単で小さなプログラムは、Ploticus です。 http://ploticus.sourceforge.net/doc/welcome.html

于 2012-08-12T03:30:22.310 に答える
0

おそらくネイティブな方法はないので、サードパーティのツールをインストールするのが最善の策だと思います-

PLOTRIX

ドキュメンテーション

于 2012-08-12T02:46:57.133 に答える