Q07. Research Type

Q07. Research Type#

Question#

Are you a theorist, experimentalist? If none of the options apply, please fill in “Other”.

Choices#

  1. Theorist

  2. Experimentalist

  3. Prefer not to answer

  4. Other…

Note

これは選択肢があまりよくなかったです。 次回聞くのであれば、理論/実験/観測・・・のように、今回の回答を参考に増やしたほうがよいと思います。 また、どちらとも言えないという回答もあったので、どちらかというと のような制限を質問に入れたらよかったかもしれないです。

Responses#

import pandas as pd
import hvplot.pandas
import titanite as ti

print(f"Pandas: {pd.__version__}")
print(f"Titanite: {ti.__version__}")
%opts magic unavailable (pyparsing cannot be imported)
%compositor magic unavailable (pyparsing cannot be imported)
Pandas: 2.2.3
Titanite: 0.6.0
f_cfg = "../../../sandbox/config.toml"
f_csv = "../../../data/test_data/prepared_data.csv"
d = ti.Data(read_from=f_csv, load_from=f_cfg)
config = d.config()
data = d.read()
2025-05-12 10:04:01.914 | INFO     | titanite.preprocess:categorical_data:135 - Categorize
names = ["q07"]
bd = ti.analysis.breakdowns(data, names)
bd.graph.cols(1)