データ相互運用性
あらゆるエコシステムへエクスポート
スプレッドシート数式からJupyter Notebook、LaTeX論文まで—デジタル化されたデータは即座に計算へ活用できます。
PY
1クリックコピーPython (Pandas / NumPy / Matplotlib)
Jupyter、Colab、VS Codeですぐに実行可能なスクリプト。
import pandas as pd
import matplotlib.pyplot as plt
# Data digitized with AI Graph Reader (aigraphreader.com)
df = pd.DataFrame({
'x_axis': [10.2, 20.5, 30.1, 40.8, 50.4, 60.0, 70.9, 80.3],
'y_series_1': [142.5, 230.1, 385.0, 420.2, 495.8, 510.0, 480.2, 410.5]
})
# Quick statistics & preview
print(df.describe())
# Re-plot verification
plt.plot(df['x_axis'], df['y_series_1'], 'b-o', label='Digitized Curve')
plt.grid(True)
plt.show()MAT
行列対応MATLAB 行列 (.m スクリプト)
行列計算、Signal Processing Toolbox、Simulink向けに最適化。
% Data extracted via AI Graph Reader (aigraphreader.com)
x_data = [10.2, 20.5, 30.1, 40.8, 50.4, 60.0, 70.9, 80.3];
y_data = [142.5, 230.1, 385.0, 420.2, 495.8, 510.0, 480.2, 410.5];
% Create structured matrix
dataset_matrix = [x_data', y_data'];
figure('Name', 'Reconstructed Data Plot');
plot(x_data, y_data, '-s', 'LineWidth', 1.5, 'MarkerSize', 6);
grid on;
xlabel('Calibrated X-Axis');
ylabel('Calibrated Y-Axis');
title('AI Graph Reader Reconstructed Spectrum');XLS
即時ダウンロードMicrosoft Excel (.xlsx) & CSV (.csv)
型定義付き数値列とヘッダーを備えた直接ダウンロード。
CSV / TSV プレーンテキスト
Google Sheets、Tableau、PowerBI、DB取込用汎用形式。
マルチシート XLSX ワークブック
系列ごとに個別シートを保持しヘッダーを自動整形。
TEX
学術仕様LaTeX テーブル & Markdown
学術論文(Overleaf、IEEE、Nature)およびGitHub向け。
\begin{table}[htbp]
\centering
\caption{Digitized Experimental Data via AI Graph Reader}
\begin{tabular}{cc}
\hline
\textbf{X Coordinate} & \textbf{Y Coordinate} \\
\hline
10.20 & 142.50 \\
20.50 & 230.10 \\
30.10 & 385.00 \\
40.80 & 420.20 \\
\hline
\end{tabular}
\end{table}