journalpng package:simpleaffy R Documentation _P_r_o_d_u_c_e _a _d_e_v_i_c_e _f_o_r _p_r_o_d_u_c_i_n_g _a_r_t_w_o_r_k _f_o_r _p_r_e_s_e_n_t_a_t_i_o_n_s _a_n_d _j_o_u_r_n_a_l_s _D_e_s_c_r_i_p_t_i_o_n: journalpng generates a device to print a 4 x 4 inch 300 dpi figure (by default). screenpng does the same, but 72dpi. _U_s_a_g_e: journalpng(file="figure.png",width=4, height=4,res=300) screenpng(file="figure.png",width=4, height=4,res=72) _A_r_g_u_m_e_n_t_s: file: the file to write the figure to width: the width of the figure height: its height res: resolution in dots-per-inch _V_a_l_u_e: A table containing annotation data _A_u_t_h_o_r(_s): Crispin J Miller _R_e_f_e_r_e_n_c_e_s: http://bioinformatics.picr.man.ac.uk/ _E_x_a_m_p_l_e_s: ## Not run: journalpng(file="results/figure1.png"); # starts a new device trad.scatter.plot(exprs(eset)[,1],exprs(eset)[,2]) dev.off(); # writes the file at this point. ## End(Not run)