Java is the mother of all JVM languages, first released in 1995 after years of development by Sun Microsystems. BeakerX uses OpenJDK for Java and all the kernels.
BeakerX supports Java cells that define classes, which can be used by other JVM based cells. One cell is equivalent to a Java compilation unit and can contain a single class, or a sequence of statements.
%import com.twosigma.beakerx.widget.FloatSlider
public class Controls {
public static final FloatSlider w = new FloatSlider();
//w.value = {10,40};
static{
w.setOrientation("horizontal");
w.setMax(100.0);
w.setMin(-100.0);
}
//w.orientation = "vertical"
}
com.twosigma.beaker.javash.bkr4480ff70.Controls
return Controls.w;
return Controls.w.getValue();
-53.6
%classpath add mvn org.json json 20180813
import java.util.Arrays;
import java.lang.reflect.Array;
public class Vector<V>{
public final static int DEFAULT_SIZE= 8;
protected V[] data;
protected int size;
private static final int a=10;
private static final float b=1.f;
public Vector(){
this(DEFAULT_SIZE);
}
public Vector(int initSize){
data= (V[]) new Object[initSize];
size= 0;
}
public void add(V v){
if(size == data.length){ grow();}
data[size]= v;
++size;
}
public V get(int i){
if (i >= size){
throw new IndexOutOfBoundsException("TODO");
}
return data[i];
}
public void set(int i, V v){
if (i >= size){
throw new IndexOutOfBoundsException("TODO");
}
data[i]= v;
}
private static int newLength(int oldLength){
return ((int) Math.ceil(oldLength*b))+a;
}
private void grow(){
data= Arrays.copyOf(data, Math.max(data.length+1, newLength(data.length)));
}
public int indexOf(V toFind){
for(int i=0; i != size; ++i){
if(toFind.equals(data[i])){
return i;
}
}
return -1;
}
public boolean contains(V toFind){
return indexOf(toFind) != -1;
}
@Override
public String toString(){
String res="";
for (int i=0; i != size; ++i){
res+= data[i]+",";
}
return "["+res+"]";
}
public Object[] toArray(){
return Arrays.copyOf(data, size);
}
public <T> T[] toArray(T[] a){
if(a.length < size){
return (T[])Arrays.copyOf(data, size, a.getClass());
}
//System.arraycopy(data, 0, a, 0, size);
for(int i=0; i != size; ++i){
a[i]= (T)data[i];
}
if(a.length > size){
a[size]= null;
}
return a;
}
public static void main(String[] args){
Vector<Integer> v= new Vector<Integer>();
for(int i=0; i != 32; ++i){
v.add(new Integer(i));
}
System.out.println(v);
Integer[] a= v.toArray(new Integer[v.size]);
}
}
com.twosigma.beaker.javash.bkr3746a81e.Vector
Vector<Integer> v= new Vector<Integer>();
for(int i=0; i != 100000; ++i){
v.add(0);
}
null
%%timeit -r10 -n3
Vector<Integer> v= new Vector<Integer>();
for(int i=0; i != 10000; ++i){
v.add(0);
}
45 ms ± 25 ms per loop (mean ± std. dev. of 10 run, 3 loop each)
%%timeit -r2 -n3 v.contains(1);
55 ms ± 19 ms per loop (mean ± std. dev. of 2 run, 3 loop each)
public class KeyValue<K, V>{
public final K key;
public final V value;
public KeyValue(K k, V v){
key= k;
value= v;
}
public boolean equals(Object o){
System.err.print(o);
if(!(o instanceof KeyValue)){
return false;
}
KeyValue<K, V> other= (KeyValue<K, V>)o;
return key.equals(other.key) && value.equals(other.value);
}
}
com.twosigma.beaker.javash.bkr3746a81e.KeyValue
public class NaiveMap<Key, Value> extends Vector<KeyValue<Key, Value>> {
private int indexOfKey(Key k){
for(int i=0; i != size; ++i){
if(k.equals(get(i).key)){
return i;
}
}
return -1;
}
public void put(Key k, Value v){
KeyValue<Key, Value> kv= new KeyValue<Key,Value>(k, v);
int i= indexOfKey(k);
if (i != -1){
set(i, kv);
}else{
add(kv);
}
}
public Value get(Key k){
return get(indexOfKey(k)).value; // TODO handle not found
}
}
com.twosigma.beaker.javash.bkr3746a81e.NaiveMap
NaiveMap<String, String> nm= new NaiveMap();
//import java.util.Map;
//import java.util.HashMap;
//Map<String, String> nm= new HashMap<String, String>();
nm.put("Gnu/Linux", "Debian");
System.out.println(nm.get("Gnu/Linux"));
for(int i=0; i != 100000; ++i){
String k="k"+i;
String v="v"+i;
nm.put(k, v);
}
Debian
null
%%timeit -r2 -n3 nm.get("test");
61 ms ± 10 ms per loop (mean ± std. dev. of 2 run, 3 loop each)
%%timeit -r2 -n3 nm.get("test");
45 ms ± 17 ms per loop (mean ± std. dev. of 2 run, 3 loop each)
import org.json.JSONObject;
import org.json.JSONArray;
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Collection;
import java.util.List;
import java.util.ArrayList;
import java.util.Scanner;
String adr="60, Rue Réaumur";//"28, rue notre dame des champs";
double score= -Double.MAX_VALUE;
double latitude= Double.NaN;
double longitude= Double.NaN;
URL url= new URL("https://api-adresse.data.gouv.fr/search/?q="+URLEncoder.encode(adr, "UTF-8")+"&lat=48.8592112&lon=2.338452");
try(BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()))) {
JSONArray fs= new JSONObject(br.readLine()).getJSONArray("features");
for(int i=0; i != fs.length(); ++i){
JSONObject f= fs.getJSONObject(i);
if(f.getJSONObject("properties").getString("city").equals("Paris")){
if(f.getJSONObject("properties").getDouble("score")> score){
score= f.getJSONObject("properties").getDouble("score");
longitude=f.getJSONObject("geometry").getJSONArray("coordinates").getDouble(0);
latitude=f.getJSONObject("geometry").getJSONArray("coordinates").getDouble(1);
}
}
}
System.out.println("latitude: "+latitude+", longitude: "+longitude);
//JSONArray res = new JSONObject(resp).getJSONArray("features").getJSONObject(0).getJSONObject("geometry").getJSONArray("coordinates");
//System.out.println(res);//longitude , latitude
}
latitude: 48.867413, longitude: 2.347572
null
package test.beaker;
import java.util.Date;
import java.text.SimpleDateFormat;
public class BeakerTest {
private Date _date;
private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mmZ");
public BeakerTest() {
_date = new Date();
}
public String getDateTxt() {
return "Today:" + sdf.format(_date);
}
public String getDateUpperCaseTxt() {
return getDateTxt().toUpperCase();
}
}
test.beaker.BeakerTest
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLEncoder;
import org.json.JSONObject;
import org.json.JSONArray;
import java.util.Collection;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.Scanner;
public class GeoPoint{
public final double latitude;
public final double longitude;
public final Map<GeoPoint, Integer> neighborToDistance;
public static List<GeoPoint> data= new ArrayList<GeoPoint>();
public GeoPoint(double latitude, double longitude){
this.latitude= latitude;
this.longitude= longitude;
neighborToDistance= new HashMap<GeoPoint, Integer>();
}
public double distanceTo(GeoPoint other){
return distanceTo(other.latitude, other.longitude);
}
public double distanceTo(double latitude, double longitude){
double earthRadius= 6371e3;// in meters
double phi1=Math.toRadians(this.latitude);
double phi2=Math.toRadians(latitude);
double deltaPhi=Math.toRadians(latitude- this.latitude);
double deltaLambda= Math.toRadians(longitude- this.longitude);
double a= Math.sin(deltaPhi/2) * Math.sin(deltaPhi/2) +
Math.cos(phi1) * Math.cos(phi2) * Math.sin(deltaLambda/2) * Math.sin(deltaLambda/2);
double c= 2* Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
return earthRadius * c;
}
public String toString(){
return "GeoPoint: "+super.toString()+"{latitude: "+latitude+", longitude: " + longitude+", nb of neighbors"+neighborToDistance.size()+"}";
}
public static GeoPoint closerTo(double latitude, double longitude, double deltaD, Collection<GeoPoint> points){
GeoPoint res=null;
double minD= Double.POSITIVE_INFINITY;
for(GeoPoint point : points){
double currentD= point.distanceTo(latitude, longitude);
if((currentD < minD) && (currentD > deltaD) ){
minD= currentD;
res= point;
}
}
return res;
}
public static GeoPoint findByName(String name){
GeoPoint res= null;
try{
URL url= new URL("https://api-adresse.data.gouv.fr/search/?q="+URLEncoder.encode(name, "UTF-8")+"&postcode=75000");
try(BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()))) {
JSONArray coords = new JSONObject(br.readLine()).getJSONArray("features").getJSONObject(0).getJSONObject("geometry").getJSONArray("coordinates");
res= new GeoPoint(coords.getDouble(0), coords.getDouble(1));
}catch(Exception e){
System.err.println(e);
}
}catch(Exception e){
System.err.println(e);
}
return res; // should throw
}
public static GeoPoint closerTo(String name, Collection<GeoPoint> data){
return closerTo(findByName(name), data);
}
public static GeoPoint closerTo(GeoPoint ref, Collection<GeoPoint> data){
return closerTo(ref.latitude, ref.longitude, 1.e-50, data);
}
public static List<GeoPoint> read(String dataUrl) throws IOException {
List<GeoPoint> res= new ArrayList<GeoPoint>();
URL url= new URL(dataUrl);
try(BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()))) {
String[] headers= br.readLine().split(" ");
int nbVertices= Integer.parseInt(headers[0]);
int nbEdges= Integer.parseInt(headers[1]);
for(int i=0; i != nbVertices; ++i){
String[] coords= br.readLine().split(" ");//latitude, longitude
res.add(new GeoPoint(Double.parseDouble(coords[0]), Double.parseDouble(coords[1])));
}
for(int i=0; i != nbEdges; ++i){
String[] data= br.readLine().split(" ");//start end nbDirs Duration Length
GeoPoint start= res.get(Integer.parseInt(data[0]));
GeoPoint end= res.get(Integer.parseInt(data[1]));
Integer length= Integer.parseInt(data[4]);
start.neighborToDistance.put(end, length);
if(data[2].equals("2")){
end.neighborToDistance.put(start, length);
}
}
}catch (Exception e){
System.err.println(e);
}
return res;
}
public static void main(String[] args){
try{
String url="https://raw.githubusercontent.com/jilljenn/tryalgo/master/examples/paris.txt";
data= read(url);
}catch(FileNotFoundException e){
System.err.println(e);
}
catch(IOException e){
System.err.println(e);
}
}
}
com.twosigma.beaker.javash.bkr66b07261.GeoPoint
String[] args={};
GeoPoint.main(args);
null
double minLat= Double.MAX_VALUE;
double maxLat= -Double.MAX_VALUE;
double minLong= Double.MAX_VALUE;
double maxLong= -Double.MAX_VALUE;
double sumLat= 0.;
double sumLong= 0.;
for(GeoPoint p: GeoPoint.data){
sumLat+= p.latitude;
sumLong+= p.longitude;
if(p.latitude < minLat){ minLat= p.latitude;}
if(p.latitude > maxLat){ maxLat= p.latitude;}
if(p.longitude < minLong){ minLong= p.longitude;}
if(p.latitude > maxLong){ maxLong= p.longitude;}
}
System.out.println("lat:["+minLat+", "+maxLat+"], long:["+minLong+", "+maxLong+"]");
System.out.println("avg lat: "+(sumLat/GeoPoint.data.size())+", avg long: "+(sumLong/GeoPoint.data.size()));
lat:[48.8157828, 48.901557700000005], long:[2.2519666000000003, 2.3598348000000002] avg lat: 48.859211258010134, avg long: 2.338452206106807
null
import java.util.Arrays;
import java.util.List;
import java.util.ArrayList;
import com.twosigma.beakerx.chart.xychart.plotitem.*;
Plot map = new Plot();
Rasters r= new Rasters();
r.setFilePath("Paris.png");
r.setOpacity(Arrays.asList(new Number[]{.5}));
r.setX(Arrays.asList(new Object[]{2.2519666000000003}));
r.setY(Arrays.asList(new Number[]{48.901557700000005}));
r.setHeight(Arrays.asList(new Number[]{48.901557700000005-48.8157828}));
r.setWidth(Arrays.asList(new Number[]{2.415388-2.2519666000000003}));
map.add(r);
int maxIt=600;
for(GeoPoint src : GeoPoint.data){
if(--maxIt == 0){ break;}
for(GeoPoint dest: src.neighborToDistance.keySet()){
Line way= new Line();
way.setX(Arrays.asList(new Object[]{src.longitude, dest.longitude}));
way.setY(Arrays.asList(new Number[]{src.latitude, dest.latitude}));
way.setColor(dest.neighborToDistance.keySet().contains(src)? Color.black : Color.red);
map.add(way);
}
}
return map;
import java.util.Arrays;
import java.util.List;
import java.util.ArrayList;
import com.twosigma.beakerx.chart.xychart.plotitem.*;
Plot map = new Plot();
Rasters r= new Rasters();
r.setFilePath("Paris.png");
r.setOpacity(Arrays.asList(new Number[]{.5}));
r.setX(Arrays.asList(new Object[]{2.2519666000000003}));
r.setY(Arrays.asList(new Number[]{48.901557700000005}));
r.setHeight(Arrays.asList(new Number[]{48.901557700000005-48.8157828}));
r.setWidth(Arrays.asList(new Number[]{2.415388-2.2519666000000003}));
map.add(r);
Points p= new Points();
ArrayList<Object> pXs= new ArrayList<Object>();
ArrayList<Number> pYs= new ArrayList<Number>();
for(GeoPoint pt : GeoPoint.data){
pXs.add(pt.longitude);
pYs.add(pt.latitude);
}
p.setX(pXs);
p.setY(pYs);
p.setShape(ShapeType.LINECROSS);
p.setSize(Arrays.asList(new Number[]{1}));
map.add(p);
return map;
import java.util.Arrays;
import java.util.List;
String test="test";
Plot map = new Plot();
Rasters r= new Rasters();
r.setFilePath("Paris.png");
Object[] xs={-132};
Number[] ys={56};
List<Object> x=Arrays.asList(xs);
List<Number> y=Arrays.asList(ys);
r.setX(x);
r.setY(y);
Number[] hs={32};
List<Number> h= Arrays.asList(hs);
r.setHeight(h);
Number[] ws={66};
List<Number> w= Arrays.asList(ws);
r.setWidth(w);
map.add(r);
return map;
package test.beaker;
BeakerTest bt = new BeakerTest();
return bt.getDateTxt();
Today:2018-08-26T06:58+0000
import java.util.List;
import java.util.ArrayList;
import com.twosigma.beakerx.chart.xychart.Plot;
import com.twosigma.beakerx.chart.xychart.plotitem.*;
import com.twosigma.beakerx.chart.Color;
Plot p = new Plot();
p.setTitle("this is a Java plot");
Bars b = new Bars();
List<Number> yList = new ArrayList<Number>();
yList.add(2);
yList.add(5);
yList.add(4);
yList.add(8);
b.setY(yList);
b.setColor(Color.blue);
b.setWidth(0.5);
p.add(b);
return p;
package test.beaker;
interface DateGetter {
public String getDateTxt();
}
package test.beaker;
public class DG2 extends BeakerTest implements DateGetter {
}
%classpath add jar ../resources/jar/BeakerXClasspathTest.jar
System.out.println("The Groovy working folder is :");
System.out.println(java.nio.file.Paths.get(".").toAbsolutePath().normalize().toString());
System.out.println("BeakerXClasspathTest.jar exists in this folder");
import com.beaker.BeakerXClasspathTest;
BeakerXClasspathTest t = new BeakerXClasspathTest();
System.out.println(com.beaker.BeakerXClasspathTest.staticTest);
System.out.println(t.getObjectTest());