1
내 팬더 DataFrame
results_print에는 이미지 인 2 차원 배열이 있습니다. 그래서처럼 인쇄 :어떻게 파이썬의 ggplot 객체를 matplot 그리드에 추가 할 수 있습니까?
gg = ggplot(aes(x='pixels'), data=DataFrame({'pixels': results_print.at[6,'mbd'].flatten()})) + \
geom_density(position='identity', stat='density') + \
xlab('pixels') + \
ylab('') + \
ggtitle('Density of pixels') + \
scale_y_log()
가 어떻게 내하기 matplotlib 그리드에 대한 요소로 gg
을 추가 할 수 있습니다
n_rows = results_print.shape[0]
n_cols = results_print.shape[1]
f, a = plt.subplots(n_cols, n_rows, figsize=(n_rows, n_cols))
methods = ['img', 'sm', 'rbd', 'ft', 'mbd', 'binary_sal', 'sal']
for r in range(n_rows):
for c, cn in zip(range(len(methods)), methods):
a[c][r].imshow(results_print.at[r,cn], cmap='gray')
가 지금은 파이썬 ggplot 이미지 객체를 생성?