Y Shorthand

2021年4月23日
Register here: http://gg.gg/p59nt
*How To Write Attention In Shorthand
*Y Shorthand Practice
*Shorthand Symbols
*Free Gregg Shorthand Manual
*Gregg Shorthand Symbols
Letter Y symbol is a copy and paste text symbol that can be used in any desktop, web, or mobile applications. This table explains the meaning of every Letter y symbol. Just click on the symbol to get more information such as Letter y symbol unicode, download Letter y emoji as a png image at different sizes, or copy Letter y symbol to clipboard. Anyone who has even a passing familiarity with Y-DNA haplogroup notation knows how cumbersome the longhand version is. For example, here is the 2020 ISOGG rendition of R1b-DF41: R1b1a1b1a1a2c1a1d. Yikes!:jaw: That one is several steps back upstream from my own terminal SNP. Unless I miscounted, DF41 in the longhand has 17 characters.
Plot y versus x as lines and/or markers.
Call signatures:
The coordinates of the points or line nodes are given by x, y.
The optional parameter fmt is a convenient way for defining basicformatting like color, marker and linestyle. It’s a shortcut stringnotation described in the Notes section below.
You can use Line2D properties as keyword arguments for morecontrol on the appearance. Line properties and fmt can be mixed.The following two calls yield identical results:
When conflicting with fmt, keyword arguments take precedence.
Plotting labelled data
There’s a convenient way for plotting objects with labelled data (i.e.data that can be accessed by index obj[’y’]). Instead of givingthe data in x and y, you can provide the object in the dataparameter and just give the labels for x and y:
All indexable objects are supported. This could e.g. be a dict, apandas.DataFame or a structured numpy array.
Plotting multiple sets of data
There are various ways to plot multiple sets of data.
*
The most straight forward way is just to call plot multiple times.Example:
*
Alternatively, if your data is already a 2d array, you can pass itdirectly to x, y. A separate data set will be drawn for everycolumn.
Example: an array a where the first column represents the xvalues and the other columns are the y columns:
*
The third way is to specify multiple sets of [x], y, [fmt]groups:
In this case, any additional keyword argument applies to alldatasets. Also this syntax cannot be combined with the dataparameter.
By default, each line is assigned a different style specified by a’style cycle’. The fmt and line property parameters are onlynecessary if you want explicit deviations from these defaults.Alternatively, you can also change the style cycle usingrcParams[’axes.prop_cycle’] (default: cycler(’color’, [’#1f77b4’, ’#ff7f0e’, ’#2ca02c’, ’#d62728’, ’#9467bd’, ’#8c564b’, ’#e377c2’, ’#7f7f7f’, ’#bcbd22’, ’#17becf’])).Parameters:x, yarray-like or scalar
The horizontal / vertical coordinates of the data points.x values are optional and default to range(len(y)).
Commonly, these parameters are 1D arrays.
They can also be scalars, or two-dimensional (in that case, thecolumns represent separate data sets).
These arguments cannot be passed as keywords.fmtstr, optional
A format string, e.g. ’ro’ for red circles. See the Notessection for a full description of the format strings.
Format strings are just an abbreviation for quickly settingbasic line properties. All of these and more can also becontrolled by keyword arguments.
This argument cannot be passed as keyword.dataindexable object, optional
An object with labelled data. If given, provide the label names toplot in x and y.
Note
Technically there’s a slight ambiguity in calls where thesecond label is a valid fmt. plot(’n’,’o’,data=obj)could be plt(x,y) or plt(y,fmt). In such cases,the former interpretation is chosen, but a warning is issued.You may suppress the warning by adding an empty format stringplot(’n’,’o’,’,data=obj).Returns:lines
A list of Line2D objects representing the plotted data.Other Parameters:scalex, scaleybool, optional, default: True
These parameters determined if the view limits are adapted tothe data limits. The values are passed on to autoscale_view.**kwargsLine2D properties, optional
kwargs are used to specify properties like a line label (forauto legends), linewidth, antialiasing, marker face color.Example:
If you make multiple lines with one plot command, the kwargsapply to all those lines.
Here is a list of available Line2D properties:PropertyDescriptionagg_filtera filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) arrayalphafloat or Noneanimatedboolantialiased or aaboolclip_boxBboxclip_onboolclip_pathPatch or (Path, Transform) or Nonecolor or ccolorcontainscallabledash_capstyle{’butt’, ’round’, ’projecting’}dash_joinstyle{’miter’, ’round’, ’bevel’}dashessequence of floats (on/off ink in points) or (None, None)data(2, N) array or two 1D arraysdrawstyle or ds{’default’, ’steps’, ’steps-pre’, ’steps-mid’, ’steps-post’}, default: ’default’figureFigurefillstyle{’full’, ’left’, ’right’, ’bottom’, ’top’, ’none’}gidstrin_layoutboollabelobjectlinestyle or ls{’-’, ’--’, ’-.’, ’:’, ’, (offset, on-off-seq), ...}linewidth or lwfloatmarkermarker stylemarkeredgecolor or meccolormarkeredgewidth or mewfloatmarkerfacecolor or mfccolormarkerfacecoloralt or mfcaltcolormarkersize or msfloatmarkeveryNone or int or (int, int) or slice or List[int] or float or (float, float)path_effectsAbstractPathEffectpickerfloat or callable[[Artist, Event], Tuple[bool, dict]]pickradiusfloatrasterizedbool or Nonesketch_params(scale: float, length: float, randomness: float)snapbool or Nonesolid_capstyle{’butt’, ’round’, ’projecting’}solid_joinstyle{’miter’, ’round’, ’bevel’}transformmatplotlib.transforms.Transformurlstrvisibleboolxdata1D arrayydata1D arrayzorderfloat
See alsoscatterXY scatter plot with markers of varying size and/or color ( sometimes also called bubble chart).
Notes
Format Strings
A format string consists of a part for color, marker and line:
Each of them is optional. If not provided, the value from the stylecycle is used. Exception: If line is given, but no marker,the data will be a line without markers.
Other combinations such as [color][marker][line] are alsosupported, but note that their parsing may be ambiguous.
Markerscharacterdescription’.’point marker’,’pixel marker’o’circle marker’v’triangle_down marker’^’triangle_up marker’<’triangle_left marker’>’triangle_right marker’1’tri_down marker’2’tri_up marker’3’tri_left marker’4’tri_right marker’s’square marker’p’pentagon marker’*’star marker’h’hexagon1 marker’H’hexagon2 marker’+’plus marker’x’x marker’D’diamond marker’d’thin_diamond marker’|’vline marker’_’hline marker
Line Stylescharacterdescription’-’solid line style’--’dashed line style’-.’dash-dot line style’:’dotted line style
Example format strings:
Colors
The supported color abbreviations are the single letter codescharactercolor’b’blue’g’green’r’red’c’cyan’m’magenta’y’yellow’k’black’w’white
and the ’CN’ colors that index into the default property cycle.
If the color is the only part of the format string, you canadditionally use any matplotlib.colors spec, e.g. full names(’green’) or hex strings (’#008000’).Shorthand Made Easy
Do you want to learn shorthand in 15 minutes instead of taking weeks of classes?
Do you want to write in your journal in an encrypted way so the meaning is obfuscated?
Do you want to take notes or just write in a cool way?
Then the Ford Improved Shorthand™ is what you are looking for and it is free too.
I developed Ford Improved Shorthand when I wanted a fast way to write in my journal that kept my writing private.
I searched for various simple cypher systems including pig-pen encryption and others, but they were hard to read and difficult to learn. I then looked into shorthand. I quickly discovered that existing shorthand methods were outdated and imprecise. That is when I decided to develop my own modernized and easy to learn shorthand method.
Gregg is the most common type of shorthand and is the scrolling type most people recognize as shorthand. This method is difficult to learn and very hard to read. It was never meant to be used to record information for storage. It was meant to be used for dictation that would then be immediately transcribed. If someone were to write notes in Gregg shorthand and try to read them six months later it would be very difficult. The writing method is also imprecise because it uses sounds, not letters. Many of the symbols also vary in size so one slash means one sound and a slightly longer slash another and an even longer slash means yet something else. If you do not keep your writing scaled the same it becomes hard to read. It also omits vowels. Try writing down a password this way! Gregg was not going to meet my needs.Greeg Shorthand Example
Pittman is another well known method. It is similar to Gregg in that it is a scrolling style which omits vowels. It also requires the use of a fountain pen to make thin and thick lines. Again, unusable today.How To Write Attention In Shorthand
Teeline is a method that is still taught to journalists in the UK and widely used. It has the advantage of using every letter, but that makes it a little slower. It is easier to learn, however it is also confusing as I will cover later. Teeline was invented by James Hill in 1968. It is actually a derrivative of earlier versions. When you compare it to Gregg you see many similar shapes such as the sounds for O, T, M. Vowels are eliminated unless they are the first letter of the word or the last letter. Ford Improved Shorthand looks similar to Teeline but that is only because I used the same concept in my letter development. Teeline also omits vowels and has some other tricks that are taught in the classes for this method which make it complicated. That is something I did not like. When you take out the vowels you speed up writing but you also take out precision and readability.Teeline Shorthand Alphabet
Ford Improved Shorthand solves the problems of older systems. It is easy to learn and write. The average person can learn the complete system in 15 minutes with no classes. It is also free for personal use. It is easy to read even months or years after it is written. It uses every letter so there is never any ambiguity about what is written.
Ford Improved Shorthand is effective for students. The other systems for shorthand are not useful for students because you spend too much time trying to figure out your notes and not learning. You are better off recording the class while using Ford Improved Shorthand to write down highlights, lists, etc. The Ford version is a modernized version which is redesigned to be easy to use, easy to learn, easy to read, easy to write, accurate and fast.
The average speed most people write is around 20 words per minute. Your speed when using the Ford Improved Shorthand method depends on you ability, but 40 words per minute is pretty good and faster than many people type and claims of 150 words are not uncommon. The average person speaks around 200 words per minute so this speed would allow a reasonable dictation rate.
The Ford Improved Shorthand method is meant as both shorthand and coding for personal journals.
This method allows you to take rapidly written notes anywhere without the average person being able to read what you have written.
Advantages of Ford Improved Shorthand
*
50% faster than regular cursive writing on average
*
no dependence on placement above or below centerline
*
no additional marks are needed
*
no special writing instruments are needed(such as thick or thin lines as in the Pittman system)
*
works with languages other than English
*
every character is drawn as efficiently as possible
*
not dependant on character spacing or scale
*
easy to read even after time has passed
*
easy to write
*
easy to learn
*
can be written with any pen or pencil

Ford Improved Shorthand Features
You may notice that Ford shorthand and Teeline are similar. This is because the same methodology was used for both. Teeline is based on the idea of using the first stroke or defining stroke to identify a character. The same idea was used for some other earlier shorthand versions which are seen in the Teeline system too. For example the Ford Improved Shorthand A is the outside stroke of the capital A. The E symbol is the back and bottom stroke of the capital E. The I symbol is the dot and line of the lower case “i” drawn in one stroke without lifting the pen. W and M are simplified by omitting the middle strokes just as was done in Gregg and other systems. F is the first stroke of the lower case ’f’. S can be written either as shown or in mirror image, both ways are still S and are a faster way of making a similar stroke. O is drawn as an alpha which is faster because the ends do not have to connect. Q(the defining top and spine stroke with serif) is differentiated from N(the second defining stroke of the lower case letter) by the serif and straight top line. You can figure out an easy way to remember each of them because almost every character is a representative stroke of the original letter. Some characters are the same as the original because they were easy to write quickly in one or two strokes so there was no reason to change those.
Teeline also used strokes from Pittman and Gregg methods. The method used in the Ford Improved Shorthand system is similar which means many characters are similar. The Ford method uses the first stroke, a defining stroke or motion, or the character itself for the Ford Improved Shorthand character.
However, there are also many important differences between Ford Improved Shorthand and other systems. There are almost no rules to remember for the Ford Improved Shorthand method. With Teeline you have to remember to omit vowels unless they are the first or last character and you combine some characters and there are other methods taught with Teeline.
In my testing I found that these simply were not worth learning and were unnecessary. The speed advantage was not that significant when compared to the difficulty of reading what was written later. That is why the Ford system has no similar rules. Teeline has some other issues, like using one character or character-appearing-symbol to represent a different character or using a symbol that is not related to the character.
For example, in Teeline the alternate __ for D is similar to T but depends on placement relative to the baseline. The Teeline F looks like D or a deflated balloon, O looked like U but so did U and Q, S looked like O(so why have O looking like U and S looking like O?). In Teeline Q, O, U and Y look basically the same with Q looking like a big U that had nothing to do with the form of Q. These character choices meant that you could never use the actual letter if you forgot when writing what the Teeline character was because it would look like another letter. It also made it much harder to learn the alphabet because some letters are replaced with other letters without rhyme or reason. If you forgot the symbol for O and just wrote ’o’ it would look like S when you read it back in Teeline. Teeline also combines characters even when there is no speed advantage to doing this so a simple set of characters suddenly becomes complex and hard to understand. There were a lot of problems with Teeline which is why I set out to make my own alphabet.
In the Ford method you do not omit vowels. The Ford method speeds up writing and allows you to keep your writing relatively private(as long as no one looking over your shoulder knows this method). It is not meant to be as fast as Gregg. It is meant to be easier to understand and write.
There is no difference between upper and lower case in the Ford system. Punctuation and numbers are the same as in regular writing. You can combine characters, but it is not necessary to do so. For example, THE would be three marks combined and LIKE would be those shorthand marks combined into one symbol, with the IK into one. Common words can be abbreviated. For common words like and, the, you, you can use a simple line so write the first letter then draw a line which symbolizes the word.
Write y-- for you. You can develop your own abbreviations and make a list of them in your journal. This will make your writing even faster.

Speed Considerations
Let’s not forget that we live in a modern world. Shorthand was developed to take dictation. I guarantee you if they had dictaphones or smartphones with recording apps or even voice recognition software there would have been no need for shorthand and it would have never been developed. If speed is really that important and you need to capture every word use a pocket voice recorder. Modern shorthand is not about taking down dictation, it is about making notes quickly and keeping your writing private. You do not have to write as fast as someone can speak anymore.

Learning Ford Improved Shorthand
You don’t need to take a course to learn the Ford Improved Shorthand system. Just start using it.
*
Write the alphabet a couple of times and you will have it firmly established in your head. It is really very simple. Look at how the characters in the Ford alphabet are similar to, representative of, or strokes from the original lower or upper-case letters. That will make it easy to remember. Spend five minutes doing this.
*
Pick a random magazine article or page from a book and write it using the Ford method. It must be something you have not memorized. At first it will be a slow process.
*
When you have written a couple of paragraphs up to a page read it back. Start at random places in the text and begin reading too. It will take some practice to get good at reading it back. At first you will have to pronounce the characters in your head and that will turn into words. Sound out the words slowly. You will quickly develop confidence in your ability to read it back, though it will take some time while you are learning. With practice you will be able to read your writing back as fast as you can read regular writing and write it as well. Spend 10 minutes practicing your reading. That is all you need to learn to read and write this system. Beyond that it is a matter of practice.
Congratulations! You have just learned the Ford Improved Shorthand method in 15 minutes or less.
If you would like a course in the Ford Improved Shorthand Method, then you just got it. Re-read 1, 2 and 3. That is it. It really is that simple. For numbers, special characters or punctuation use the regular shapes. If you would still like to take a seven day intensive course in this method, repeat the above for seven days. Really, that is all there is to it. This is a simple method and I am not selling courses on how to do it.Y Shorthand Practice
Tips:
Be classy and use a fountain pen. This is not really related to shorthand, but it looks cool to write with a fountain pen and it is a great way to differentiate your writing from other’s writings

https://diarynote-jp.indered.space

コメント

最新の日記 一覧

<<  2025年7月  >>
293012345
6789101112
13141516171819
20212223242526
272829303112

お気に入り日記の更新

テーマ別日記一覧

まだテーマがありません

この日記について

日記内を検索