Dify

note.com

英語の記事

docs.dify.ai

note.com

note.com

Google検索: これはAIのGoogleへの入り口のようなものです。AIが検索を実行し、情報やウェブページの一部を抜き出すことができます。 DALL·E: OpenAIのアーティスト支援ツールです。AIはこれを使って、テキストの説明から画像を作成することができます。 Vectorizer.AI: PNGやJPG画像をSVGベクター画像に素早く変換します。 Chart Generator: AIがバー、ライン、パイなどの視覚的なチャートを作成する必要がある場合に最適です。 Web Scraper: ウェブサイトからテキスト、画像、リンクを自動的に取得するのに便利なツールです。 Wolfram Alpha: 難しい数学の解決、データ分析、歴史情報の検索など、AIが困ったときの頼りになるツールです。 Youtube: AIがYouTube動画の統計情報を知る必要がある場合に使用します。 Stable Diffusion: テキストの説明から画像を作成するためのもう一つのクリエイティブツールです。 Yahoo Finance: AIがリアルタイムの金融・株式ニュースを入手するためのリソースです。 Wikipedia: AIがウィキペディアで素早くスニペットや情報を検索する方法です。 Current Time: AIが現在の時刻をチェックするためのシンプルなツールです。

scrapbox.io

pandra

import pandas as pd
import matplotlib.pyplot as plt

df = pd.read_csv("data.csv",header = 0,skiprows = 7)
print(df.head())
#print(df.info())
#print(df.describe())
#print(df['Time'])
#print(df['ILEAK2'])

#filtered_data = df[df['ILEAK2'] > 4]
#print(filtered_data)
#df['ILEAK2'].plot(kind='hist',bins=10,alpha=0.6)
#df['ILEAK2'].plot(kind='line', title='ILEAK2', figsize=(10, 5))
#plt.xlabel('no')
#plt.ylabel('A')
#plt.grid(True)

fig,axs = plt.subplots(1,2,figsize=(10,4))
axs[0].plot(df['ILEAK2'])
axs[0].set_title('ILEAK2')
axs[0].set_xlabel('x')
axs[0].set_ylabel('y')
axs[0].grid(True)


axs[1].hist(df['ILEAK2'],bins=20,alpha = 0.7)
axs[1].set_title('ILEAK2')
axs[1].set_xlabel('x')
axs[1].set_ylabel('y')
axs[1].grid(True)

plt.tight_layout()

plt.show()