就是用r语言来画一个球体,是r语言入门的
,,,,,,
rm(list=ls());gc()
.rs.restartR()
require(r3dmol)
?m_add_sphere()#添加球体形状。
r3dmol() %>%
m_add_model(data = m_fetch_pdb("1bna")) %>%
m_add_sphere(
center = m_sel(resi = 1),
spec = m_shape_spec(color = "green", wireframe = TRUE) # 颜色
) %>%
m_zoom_to(sel = m_sel(resi = 1))
如果对你有帮助,可以点击我这个回答右上方的【采纳】按钮,给我个采纳吗,谢谢