search for: totalpic

Displaying 3 results from an estimated 3 matches for "totalpic".

2011 Jun 15
2
plot with two y axes BUT unaligned x axis
Hi all, I have scoured the archives of this forum but nothing quite seems to fit the bill... I would like to plot a graph displaying two variables (y axes) that share date as the x axis. However, the date values for each variable are not the same - for example, some parasitoids were not released on days that collections from the trap took place, whilst sometimes releases did occur on the same
2005 Aug 09
3
file
...**************************** package asl; import java.awt.*; import java.awt.event.*; import java.applet.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class animat extends JApplet implements Runnable{ Thread t = new Thread(this); Image picture[]=new Image[6]; int totalpic=0; int current=0; int pause=500; String imgText; //********************************* public void init(){ t.start(); String pauseText=null; pause=Integer.parseInt(pauseText); for(int i=0;i<6;i++){ imgText=getParameter("image"+i); if(imgText!=null){...
2017 Oct 20
1
create a loop
Hi R Users, I do have very big data sets and wanted to run some of the analyses many times with randomization (1000 times). I have done the analysis using an example data but it need to be done with randomized data (1000 times). I am doing manually for 10000 times but taking so much time, I wonder whether it is possible to perform the analysis with creating a loop for many replicated datasets?