search for: bubble

Displaying 20 results from an estimated 402 matches for "bubble".

2010 Aug 05
0
No subject
[snip] Aug 21 09:08:49 BUBBLE kernel: [ 32.126698] PGD 2b01067 PUD bc850067 PMD = 242d067 PTE fffffffffffff237 Aug 21 09:08:49 BUBBLE kernel: [ 32.126716] CPU 0=20 Aug 21 09:08:49 BUBBLE kernel: [ 32.126720] Modules linked in: cpufreq_po= wersave cpufreq_conservative cpufreq_userspace cpufreq_stats parport_pc ppd= ev lp p...
2023 Nov 07
1
make a lattice dotplot with symbol size proportional to a variable in the plotted dataframe
...R 4.1.3 on Windows 10. Commented MWE below. Thanks. --Chris Ryan library(dplyr) library(lattice) ## fabricate a dataframe dd <- data.frame(agency = sample(LETTERS, size = 5), total = sample(100:200, size = 5), las = sample(20:40, size = 5)) dd <- dd %>% mutate(proportion = las/total, bubble = total/100) ## attempt to make a dotplot with symbol size proportional ## to the variable named total dotplot(agency ~ proportion, pch = 16, cex = bubble, data = dd) ## object 'bubble' not found dotplot(agency ~ proportion, pch = 16, cex = dd$bubble, data = dd) ## works ## also wor...
2006 Oct 05
1
quota dict (mysql)
...t: mysql: Connected to localhost (postfix) Oct 02 23:26:37 Info: dict: mysql: Connected to localhost (postfix) Oct 02 23:27:07 Info: imap-login: Aborted login: rip=10.0.0.25, lip=10.0.0.22, TLS Oct 02 23:27:11 Info: dict: mysql: Connected to localhost (postfix) mail.debug gives: Oct 2 23:26:39 bubbles dovecot: IMAP(user at domain.net): dict_quota: Couldn't update quota Oct 2 23:26:39 bubbles dovecot: IMAP(user at domain.net): dict_quota: Couldn't update quota Oct 2 23:26:39 bubbles dovecot: IMAP(user at domain.net): dict_quota: Couldn't update quota Oct 2 23:26:39 bubbles dovecot...
2003 Oct 08
0
Ldap PDC NT4 Redhat 9 domain problems
...ap to associate RID's with Posix groups, should these mappings appear in the ou=Idmap container I've created for them? Here are the details of my config. Any help would be appreciated. tks Scott Syms Halifax, NS Canada Ldap dif file ++++++++++++++++++++++++++++++++++++++++++++++++++++ # bubbles, can, ca dn: dc=bubbles,dc=can,dc=ca objectClass: dcObject objectClass: organization dc: bubbles o: gc # People, bubbles, can, ca dn: ou=People,dc=bubbles,dc=can,dc=ca objectClass: organizationalUnit ou: People # Groups, bubbles, can, ca dn: ou=Groups,dc=bubbles,dc=can,dc=ca objectClass: organiz...
2023 Nov 07
1
make a lattice dotplot with symbol size proportional to a variable in the plotted dataframe
Handling NSE in these kinds of examples is a pain in lattice. I would suggest using with() and dropping the data argument for simple examples, e.g., dd |> mutate(new.proportion = las/total, new.bubble = total/100) |> with(dotplot(agency ~ new.proportion, pch = 16, cex = new.bubble)) But if you care about multi-panel plots, you also need to be careful about making sure that the 'cex' values get split properly. This is done generally using the 'subscripts' argument provided...
2009 Jul 20
5
what is meaning of the bubbles in boxplots?
Hi ,everyone , I draw some boxplot figure with the command "boxplot".But in the figure,there are some bubbles at the top part of the figure. Can anyone tell me what the correct meaning of these bubbles?and how to remove it? -- TANG Jie Email: totangjie@gmail.com Tel: 0086-2154896104 Shanghai Typhoon Institute,China [[alternative HTML version deleted]]
2017 Mar 18
3
frozen bubble for C7
Hi all! I'm looking for a frozen-bubble that works on C7. I've tried installing the one in the Nux C7 archive, and the installation dies with: Error: Package: frozen-bubble-2.2.1-0.10.beta1.el7.nux.x86_64 (nux-dextop) Requires: perl(Compress::Bzip2) Can't find perl(compress::bzip2) anywhere. thansk in advance! Fre...
2007 Mar 08
2
Rendering a view from a model
Hi peoples. I have the following class method in a Rails model, in which I retrieve some objects from the DB... @bubbles = Bubble.find(:all, :limit => 30) # What is the limit? open( "public/xml_data/main_data_feed.xml", "w" ) { | l | l.write ERB.new( IO.read( File.join( RAILS_ROOT, "app/views/rssfeed/bubbles.rhtml" ) ) ).result } When I attempt to run this with runner I get the...
2006 Sep 19
2
bubble plot problems
Hi, I'm having some problems with a bubble plot (ps package). I don't want tick marks on all four sides (just two), I want to have a smaller font size, and I would like to be able to define bubble sizes shown in the legend (now it shows 0, 0, 0, 9.747 and 4265.757 which is not really convenient. Passing some of the standard plot arg...
2011 Apr 14
4
Categorical bubble plot
Hi, I do not have much R experience just the basics, so please excuse any obvious questions. I would like to create bubble plot that have Categorical data on the x and y axis and then the diameter if the bubble the value related to x and y. Attached to the email is a pic of what I would like to do. I do hope someone can help me. -- Regards/Groete/Mit freundlichen Gr??en/recuerdos/meilleures salutations/ distinti s...
2009 May 07
1
Bubble Plot Over a Map
Hi everybody, Well here is another doubt! I’m elaborating some maps, and I pretend to plot over it the abundance of species. I could do that using points(), but I’d like to use bubble() from sp package. When trying to use bubble() I face the fallowing issue: When I call the bubble function it overwrite everything I previously plotted. It doesn’t happen with points (obviously), only with bubble(). I tried to specify panel.smooth as panel function to bubble, I tried to use add=T...
2006 Jun 04
1
text bubble (rectangle)?
Dear R wizards: sorry to bug everyone twice in one day. I would like to annotate my graph by putting text strings into rectangle boxes with a little cartoon-like bubble with a lid pointing to a specific location. I can draw some sort of bubble-with-lid using the R primitives. (has anyone done something like this already?) the problem where I am stuck is that the width of the rectangle must depend on the length and font of my string. is there a way to obtain th...
2009 Sep 28
1
Bubble Plot
Hello, I am using the bubble plot and have been able to overlay two different data sets on the same graphic successfully. I would like to do the following and cannot: 1) suppress the zero values such that there is no representation of them on my plot (i.e., the "zeroes" show up as the smallest dot size, and I can...
2005 Jul 21
2
bubble.plot() - standardize size of unit circle
Hello, I wrote a wrapper for symbols() that produces a bivariate bubble plot, for use when plot(x,y) hides multiple occurrences of the same x,y combination (e.g. if x,y are integers). Circle area ~ counts per bin, and circle size is controlled by 'scale'. Question: how can I automatically make the smallest circle the same size as a standard plot character, rath...
2009 Jan 10
1
Bubble plot on shapefile - projection issues?
...p list, ? I am working on some data from a study on the habitat use and movement patterns of fish using a marine protected area in Hawaii.? We have a number of acoustic receivers in a MPA, and any time a tagged fish passes within range it records the date and time of detection.? I am trying to make bubble plots?showing the number of detections for each fish at each receiver.? I have been able to get it to work using a map generated from GSHHS data (Global Self-consistent, Hierarchical, Highresolution Shoreline) but the map data is not of high enough resolution.? Instead I am trying to plot the data...
2011 May 28
1
newbie xml parsing question
...p://www.zillow.com/homes/511 W Lafayette St, Norristown, PA_rb" doc <-doc <- htmlTreeParse(url1, isURL=TRUE) doc I'd like to be able to pull the following information into R href home details string : /homedetails/236-Arundel-Ave-Horsham-PA-19044/9933810_zpid/#{scid=hdp-site-map-bubble-address} value for Zestimate \ Price: $239,000 Beds : 3 Baths: 1.0 Sqft :1630 I noticed all that information is in "doc". The section of doc where the information is contained is shown below. How do I go about extracting this information and getting it into R for the general case where...
1999 Nov 11
1
VQ codebook sanity check (please help)
...l underway. This is it! The last piece needed for *real* bitstreams. To that end, I have a decent VQ codebook generator running. I was originally using some farily typical merge/split algorithms and then decided that the right way to do this was to model a VQ codebook as an m-dimensional set of bubbles (like a foam). I know there are folks reading the list that understand the details of vector quantization, so I thought I'd sanity check my assumptions and approach. *I* think what I'm doing is perfectly sensible (and I'll point out that the code works), but playing with VQ is new to...
2010 Jul 30
1
Problem with "par" and "bubble plot"
Hi all. I have been trying to plot 9 bubble plots on each page of a PDF file. For this, I'm using : par(mfcol = c(3,3), mar = c(3,3,3,3), oma = c(0,0,0,0)); However, when plotting the bubble plot (gstats package), it plots the graph on a full page. I tried to plot something else with plot(x,y) and it works as intended. So I'm gues...
2011 Nov 23
2
Suggested alternative to rgdal for Mac for making bubble plots with R 2.14?
I'm new to making bubble plots with R, so I was going to try the following: https://stat.ethz.ch/pipermail/r-sig-geo/2009-August/006258.html Unfortunately, it looks like rgdal is not part of 2.14.  I'm not sure if it was the mirror I selected or something else is going on. > install.packages("rgdal") -...
2017 Mar 21
0
frozen bubble for C7
That perl lib was most likely in EPEL at the time I added Frozen Bubble. They orphan packages once in a while breaking my deps. Anyway, I've added perl-Compress-Bzip2 to my repo and Frozen Bubble should install fine now. -- Sent from the Delta quadrant using Borg technology! Nux! www.nux.ro ----- Original Message ----- > From: "Fred Smith" <fred...